haskell.compiler.ghc98: 9.8.3 -> 9.8.2

HLS can't be built yet with 9.8.3, so it doesn't make sense to make it a
default yet. Unfortunately we are still missing a ghc-lib-parser release
that works with ghc 9.8.3.
This commit is contained in:
sternenseemann 2024-10-21 21:38:46 +02:00
parent 16a2554068
commit cb703b406f

View File

@ -400,7 +400,7 @@ in {
buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_15;
llvmPackages = pkgs.llvmPackages_15;
};
ghc98 = compiler.ghc983;
ghc98 = compiler.ghc982; # HLS doesn't work yet with 9.8.3
ghc9101 = callPackage ../development/compilers/ghc/9.10.1.nix {
bootPkgs =
# For GHC 9.6 no armv7l bindists are available.
@ -594,7 +594,7 @@ in {
ghc = bh.compiler.ghc983;
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.8.x.nix { };
};
ghc98 = packages.ghc983;
ghc98 = packages.ghc982; # HLS doesn't work yet with 9.8.3
ghc9101 = callPackage ../development/haskell-modules {
buildHaskellPackages = bh.packages.ghc9101;
ghc = bh.compiler.ghc9101;