summaryrefslogtreecommitdiffstats
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorAlexandre Esteves <alexfmpe@proton.me>2024-05-31 01:35:17 +0100
committersternenseemann <sternenseemann@systemli.org>2024-06-17 14:40:58 +0200
commit9036501ab527eb84f80076c69bfbb1a6d29a1715 (patch)
tree8b25c037cd4e24e5c9f3084f09a7ce2c2a4328c2 /pkgs/development/haskell-modules/configuration-common.nix
parent78e2348b11ddb5dc606b9d6a4f22679b12257b30 (diff)
haskellPackages.ghcjs-dom-hello: fix on darwin
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix17
1 files changed, 15 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index b444072c6b03..e1efb46422a3 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1560,6 +1560,21 @@ self: super: {
doJailbreak
];
+ ghcjs-dom-hello = appendPatches [
+ (fetchpatch {
+ url = "https://github.com/ghcjs/ghcjs-dom-hello/commit/53991df6a4eba9f1e9633eb22f6a0486a79491c3.patch";
+ sha256 = "sha256-HQeUgjvzYyY14+CDYiMahAMn7fBcy2d7p8/kqGq+rnI=";
+ })
+ (fetchpatch {
+ url = "https://github.com/ghcjs/ghcjs-dom-hello/commit/d766d937121f7ea5c4c154bd533a1eae47f531c9.patch";
+ sha256 = "sha256-QTkH+L+JMwGyuoqzHBnrokT7KzpHC4YiAWoeiaFBLUw=";
+ })
+ (fetchpatch {
+ url = "https://github.com/ghcjs/ghcjs-dom-hello/commit/831464d995f4033c9aa84f9ed9fb37a268f34d4e.patch";
+ sha256 = "sha256-hQMy+78geTuxd3kbdiyYqoAFrauu90HbpPi0EEKjMzM=";
+ })
+ ] super.ghcjs-dom-hello;
+
# Needs https://github.com/ghcjs/jsaddle-hello/pull/5 and hackage release
jsaddle-hello = appendPatches [
(fetchpatch {
@@ -1576,8 +1591,6 @@ self: super: {
})
] super.jsaddle-hello;
- ghcjs-dom-hello = doJailbreak super.ghcjs-dom-hello;
-
# Too strict upper bounds on text
lsql-csv = doJailbreak super.lsql-csv;