From fe0862b815350e622e366f8afa1fd2db7284b8c6 Mon Sep 17 00:00:00 2001 From: Emily Date: Sun, 7 Sep 2025 01:13:30 +0100 Subject: [PATCH] haskell.compiler.ghc967: bootstrap with GHC 9.4.8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We’d want every version to be able to trace back to 9.4.8 for the “cross‐compiled GHC bootstrap tarballs” plan, anyway. I’m not sure whether we’d want a `ghc948Binary` package that also includes the official tarballs, or just only use our cross‐compiled binary distributions, but it will make sense to align the version used for bootstrap regardless. (cherry picked from commit da915f81efab5163f7a3a3fd304970f07909b336) --- pkgs/top-level/haskell-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 14cc93217993..2ccf27077d0e 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -92,7 +92,7 @@ in }; ghc94 = compiler.ghc948; ghc967 = callPackage ../development/compilers/ghc/9.6.7.nix { - bootPkgs = bb.packages.ghc924Binary; + bootPkgs = bb.packages.ghc948; inherit (buildPackages.python3Packages) sphinx; inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook; inherit buildTargetLlvmPackages llvmPackages;