We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8cbca5 commit 390a0f0Copy full SHA for 390a0f0
build.nix
@@ -20,11 +20,12 @@ in rec {
20
tests = import ./test/default.nix { inherit pkgs ifdLevel compiler-nix-name; };
21
22
tools = pkgs.lib.optionalAttrs (ifdLevel >= 3) (
23
- pkgs.recurseIntoAttrs {
+ pkgs.recurseIntoAttrs ({
24
cabal-latest = tool compiler-nix-name "cabal" "latest";
25
+ } // pkgs.lib.optionalAttrs (compiler-nix-name != "ghc901") {
26
hls-latest = tool compiler-nix-name "haskell-language-server" "latest";
27
hlint-latest = tool compiler-nix-name "hlint" (if compiler-nix-name == "ghc865" then "3.2.7" else "latest");
- }
28
+ })
29
);
30
31
# Scripts for keeping Hackage and Stackage up to date, and CI tasks.
0 commit comments