ghc: 8.10.6 -> 8.10.7

https://www.haskell.org/ghc/download_ghc_8_10_7.html

(cherry picked from commit 9eca744cc0484e417deb260076241efb0a6c159d)
This commit is contained in:
sternenseemann
2021-09-23 00:13:41 +00:00
committed by John Ericson
parent 56a9ec15ff
commit 65c3102d78
4 changed files with 10 additions and 10 deletions
+4 -4
View File
@@ -75,7 +75,7 @@ in {
buildLlvmPackages = buildPackages.llvmPackages_9;
llvmPackages = pkgs.llvmPackages_9;
};
ghc8106 = callPackage ../development/compilers/ghc/8.10.6.nix {
ghc8107 = callPackage ../development/compilers/ghc/8.10.7.nix {
# aarch64 ghc865Binary gets SEGVs due to haskell#15449 or similar
bootPkgs = if stdenv.isAarch64 || stdenv.isAarch32 then
packages.ghc8102BinaryMinimal
@@ -162,9 +162,9 @@ in {
ghc = bh.compiler.ghc8104;
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { };
};
ghc8106 = callPackage ../development/haskell-modules {
buildHaskellPackages = bh.packages.ghc8106;
ghc = bh.compiler.ghc8106;
ghc8107 = callPackage ../development/haskell-modules {
buildHaskellPackages = bh.packages.ghc8107;
ghc = bh.compiler.ghc8107;
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { };
};
ghc901 = callPackage ../development/haskell-modules {
+3 -3
View File
@@ -47,7 +47,7 @@ let
all = with compilerNames; [
ghc884
ghc8104
ghc8106
ghc8107
ghc901
];
@@ -207,11 +207,11 @@ let
# package sets (like Cabal, jailbreak-cabal) are
# working as expected.
cabal-install = all;
Cabal_3_6_0_0 = with compilerNames; [ ghc884 ghc8104 ghc8106 ];
Cabal_3_6_0_0 = with compilerNames; [ ghc884 ghc8104 ghc8107 ];
funcmp = all;
# Doesn't currently work on ghc-9.0:
# https://github.com/haskell/haskell-language-server/issues/297
haskell-language-server = with compilerNames; [ ghc884 ghc8104 ghc8106 ];
haskell-language-server = with compilerNames; [ ghc884 ghc8104 ghc8107 ];
hoogle = all;
hsdns = all;
jailbreak-cabal = all;