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 967914b commit ab435f0Copy full SHA for ab435f0
modules/cabal-project.nix
@@ -25,7 +25,7 @@ in {
25
ghc99FullName = pkgs.haskell-nix.resolve-compiler-name "ghc99";
26
in
27
# cabal-install from hackage (3.10.1.0) does not build with GHC HEAD
28
- if fullName == ghc99FullName && config.name == "cabal-install" && config.version == "3.10.1.0"
+ if fullName == ghc99FullName && config.name == "cabal-install" && (builtins.elem config.version ["3.10.1.0" "3.10.2.0"])
29
then "ghc963"
30
else pkgs.haskell-nix.resolve-compiler-name name;
31
};
0 commit comments