We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e41959 commit 431caa5Copy full SHA for 431caa5
test/js-template-haskell/default.nix
@@ -7,7 +7,8 @@ let
7
project = project' {
8
inherit compiler-nix-name evalPackages;
9
src = testSrc "js-template-haskell";
10
- cabalProjectLocal = ''
+ cabalProjectLocal = builtins.readFile ../cabal.project.local
11
+ + ''
12
if arch(javascript)
13
extra-packages: ghci
14
constraints: ghcjs installed
test/shell-for-setup-deps/default.nix
@@ -10,7 +10,8 @@ let
};
env = project.shellFor {
- withHoogle = !__elem compiler-nix-name ["ghc901" "ghc902" "ghc921" "ghc922" "ghc923" "ghc924" "ghc925" "ghc926" "ghc927"];
+ tools.hoogle = { cabalProjectLocal = builtins.readFile ../cabal.project.local; };
+ withHoogle = true;
15
16
17
in recurseIntoAttrs ({
0 commit comments