Skip to content

Commit a5a2bec

Browse files
committed
Fix for ghcjs 8.10
1 parent 31abe7d commit a5a2bec

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

overlays/ghc-packages.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ let
7171
integer-gmp = "libraries/integer-gmp";
7272
template-haskell = "libraries/template-haskell";
7373
iserv = "utils/iserv";
74+
ghc-boot = "libraries/ghc-boot";
7475
} // final.lib.optionalAttrs ((!final.stdenv.hostPlatform.isGhcjs || builtins.compareVersions ghcVersion "9.6" < 0) && builtins.compareVersions ghcVersion "9.8" < 0) {
7576
libiserv = "libraries/libiserv";
7677
} // final.lib.optionalAttrs (!final.stdenv.hostPlatform.isGhcjs || builtins.compareVersions ghcVersion "9" > 0) {
7778
ghc = "compiler";
78-
ghc-boot = "libraries/ghc-boot";
7979
} // (
8080
if builtins.compareVersions ghcVersion "9.4" < 0
8181
then {

test/js-template-haskell/default.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ let
99
src = testSrc "js-template-haskell";
1010
cabalProjectLocal = ''
1111
if arch(javascript)
12-
if impl(ghc>9)
13-
extra-packages: ghci
12+
extra-packages: ghci
1413
'';
1514
};
1615

0 commit comments

Comments
 (0)