3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #104683 from Fuseteam/patch-1

ghc8102: bootstrap with ghc8102BinaryMinimal on aarch32
This commit is contained in:
maralorn 2020-11-28 12:05:18 +01:00 committed by GitHub
commit efe54d6c04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -96,7 +96,7 @@ in {
};
ghc8102 = callPackage ../development/compilers/ghc/8.10.2.nix {
# aarch64 ghc865Binary gets SEGVs due to haskell#15449 or similar
bootPkgs = if stdenv.isAarch64 then
bootPkgs = if stdenv.isAarch64 || stdenv.isAarch32 then
packages.ghc8102BinaryMinimal
else
packages.ghc865Binary;