Skip to content

Commit 431caa5

Browse files
committed
More fixes for ghc HEAD
1 parent 4e41959 commit 431caa5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

test/js-template-haskell/default.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ let
77
project = project' {
88
inherit compiler-nix-name evalPackages;
99
src = testSrc "js-template-haskell";
10-
cabalProjectLocal = ''
10+
cabalProjectLocal = builtins.readFile ../cabal.project.local
11+
+ ''
1112
if arch(javascript)
1213
extra-packages: ghci
1314
constraints: ghcjs installed

test/shell-for-setup-deps/default.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ let
1010
};
1111

1212
env = project.shellFor {
13-
withHoogle = !__elem compiler-nix-name ["ghc901" "ghc902" "ghc921" "ghc922" "ghc923" "ghc924" "ghc925" "ghc926" "ghc927"];
13+
tools.hoogle = { cabalProjectLocal = builtins.readFile ../cabal.project.local; };
14+
withHoogle = true;
1415
};
1516

1617
in recurseIntoAttrs ({

0 commit comments

Comments
 (0)