haskellPackages.ghc: 8.10.7 -> 9.0.2

This commit is contained in:
sternenseemann
2022-02-18 18:24:22 +01:00
parent 19bdc1a4ab
commit b925f64911
+2 -2
View File
@@ -12389,7 +12389,7 @@ with pkgs;
# Please update doc/languages-frameworks/haskell.section.md, “Our
# current default compiler is”, if you bump this:
haskellPackages = dontRecurseIntoAttrs haskell.packages.ghc8107;
haskellPackages = dontRecurseIntoAttrs haskell.packages.ghc902;
# haskellPackages.ghc is build->host (it exposes the compiler used to build the
# set, similarly to stdenv.cc), but pkgs.ghc should be host->target to be more
@@ -12399,7 +12399,7 @@ with pkgs;
# the withPackages wrapper available. In the final cross-compiled package set
# however, targetPackages won't be populated, so we need to fall back to the
# plain, cross-compiled compiler (which is only theoretical at the moment).
ghc = targetPackages.haskellPackages.ghc or haskell.compiler.ghc8107;
ghc = targetPackages.haskellPackages.ghc or haskell.compiler.ghc902;
cabal-install = haskell.lib.compose.justStaticExecutables haskellPackages.cabal-install;