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 10e1162 commit a91327eCopy full SHA for a91327e
default.nix
@@ -104,9 +104,7 @@ rec {
104
105
# Tooling for analyzing Haskell imports and exports.
106
hsie =
107
- pkgs.callPackage nix/hsie {
108
- inherit (pkgs.haskell.packages."${compiler}") ghcWithPackages;
109
- };
+ pkgs.callPackage nix/hsie { };
110
111
### Tools
112
nix/hsie/default.nix
@@ -1,4 +1,4 @@
1
-{ ghcWithPackages
+{ haskell
2
, runCommand
3
}:
4
let
@@ -14,7 +14,7 @@ let
14
ps.ghc-paths
15
ps.optparse-applicative
16
];
17
- ghc = ghcWithPackages modules;
+ ghc = haskell.packages.ghc94.ghcWithPackages modules;
18
19
runCommand "haskellimports" { inherit name src; }
20
''
0 commit comments