lol

ghc: Disable on AArch64

For some reason compiling the proper GHC from the binary one eventually
segfaults at some point.

Since it has never worked, just disable it and investigate later.

+2 -1
+2 -1
pkgs/development/compilers/ghc/8.2.1-binary.nix
··· 158 158 passthru = { targetPrefix = ""; }; 159 159 160 160 meta.license = stdenv.lib.licenses.bsd3; 161 - meta.platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin" "armv7l-linux" "aarch64-linux"]; 161 + # AArch64 should work in theory but eventually some builds start segfaulting 162 + meta.platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin" "armv7l-linux" /* "aarch64-linux" */]; 162 163 }