|
6 | 6 | "ghc865Binary" |
7 | 7 | "ghc8102Binary" |
8 | 8 | "ghc8102BinaryMinimal" |
9 | | - "ghc8105Binary" |
10 | | - "ghc8105BinaryMinimal" |
| 9 | + "ghc8107Binary" |
| 10 | + "ghc8107BinaryMinimal" |
11 | 11 | "integer-simple" |
12 | 12 | "native-bignum" |
13 | 13 | "ghcHEAD" |
|
59 | 59 | minimal = true; |
60 | 60 | }; |
61 | 61 |
|
62 | | - ghc8105Binary = callPackage ../development/compilers/ghc/8.10.5-binary.nix { |
| 62 | + ghc8107Binary = callPackage ../development/compilers/ghc/8.10.7-binary.nix { |
63 | 63 | llvmPackages = pkgs.llvmPackages_11; |
64 | 64 | }; |
65 | 65 |
|
66 | | - ghc8105BinaryMinimal = callPackage ../development/compilers/ghc/8.10.5-binary.nix { |
| 66 | + ghc8107BinaryMinimal = callPackage ../development/compilers/ghc/8.10.7-binary.nix { |
67 | 67 | llvmPackages = pkgs.llvmPackages_11; |
68 | 68 | minimal = true; |
69 | 69 | }; |
70 | 70 |
|
71 | 71 | ghc884 = callPackage ../development/compilers/ghc/8.8.4.nix { |
72 | 72 | # the oldest ghc with aarch64-darwin support is 8.10.5 |
73 | 73 | bootPkgs = if stdenv.isDarwin && stdenv.isAarch64 then |
74 | | - packages.ghc8105BinaryMinimal |
| 74 | + packages.ghc8107BinaryMinimal |
75 | 75 | # aarch64 ghc865Binary gets SEGVs due to haskell#15449 or similar |
76 | 76 | # Musl bindists do not exist for ghc 8.6.5, so we use 8.10.* for them |
77 | 77 | else if stdenv.isAarch64 || stdenv.targetPlatform.isMusl then |
|
85 | 85 | ghc8107 = callPackage ../development/compilers/ghc/8.10.7.nix { |
86 | 86 | # the oldest ghc with aarch64-darwin support is 8.10.5 |
87 | 87 | bootPkgs = if stdenv.isDarwin && stdenv.isAarch64 then |
88 | | - packages.ghc8105BinaryMinimal |
| 88 | + packages.ghc8107BinaryMinimal |
89 | 89 | # aarch64 ghc865Binary gets SEGVs due to haskell#15449 or similar |
90 | 90 | # Musl bindists do not exist for ghc 8.6.5, so we use 8.10.* for them |
91 | 91 | else if stdenv.isAarch64 || stdenv.isAarch32 || stdenv.targetPlatform.isMusl then |
|
103 | 103 | ghc901 = callPackage ../development/compilers/ghc/9.0.1.nix { |
104 | 104 | # the oldest ghc with aarch64-darwin support is 8.10.5 |
105 | 105 | bootPkgs = if stdenv.isDarwin && stdenv.isAarch64 then |
106 | | - packages.ghc8105BinaryMinimal |
| 106 | + packages.ghc8107BinaryMinimal |
107 | 107 | # aarch64 ghc8102Binary exceeds max output size on hydra |
108 | 108 | else if stdenv.isAarch64 || stdenv.isAarch32 then |
109 | 109 | packages.ghc8102BinaryMinimal |
@@ -184,15 +184,15 @@ in { |
184 | 184 | compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { }; |
185 | 185 | packageSetConfig = bootstrapPackageSet; |
186 | 186 | }; |
187 | | - ghc8105Binary = callPackage ../development/haskell-modules { |
188 | | - buildHaskellPackages = bh.packages.ghc8105Binary; |
189 | | - ghc = bh.compiler.ghc8105Binary; |
| 187 | + ghc8107Binary = callPackage ../development/haskell-modules { |
| 188 | + buildHaskellPackages = bh.packages.ghc8107Binary; |
| 189 | + ghc = bh.compiler.ghc8107Binary; |
190 | 190 | compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { }; |
191 | 191 | packageSetConfig = bootstrapPackageSet; |
192 | 192 | }; |
193 | | - ghc8105BinaryMinimal = callPackage ../development/haskell-modules { |
194 | | - buildHaskellPackages = bh.packages.ghc8105BinaryMinimal; |
195 | | - ghc = bh.compiler.ghc8105BinaryMinimal; |
| 193 | + ghc8107BinaryMinimal = callPackage ../development/haskell-modules { |
| 194 | + buildHaskellPackages = bh.packages.ghc8107BinaryMinimal; |
| 195 | + ghc = bh.compiler.ghc8107BinaryMinimal; |
196 | 196 | compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { }; |
197 | 197 | packageSetConfig = bootstrapPackageSet; |
198 | 198 | }; |
|
0 commit comments