From b925f64911b906e2cd50dbc47a9adb5d8e8ad829 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Fri, 18 Feb 2022 14:25:52 +0100 Subject: [PATCH] haskellPackages.ghc: 8.10.7 -> 9.0.2 --- pkgs/top-level/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5e11fca40bf1..7b669f427d1f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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;