Commit a6425fc6 authored by Tuomas Tynkkynen's avatar Tuomas Tynkkynen
Browse files

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.
parent 3131daac
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -158,5 +158,6 @@ stdenv.mkDerivation rec {
  passthru = { targetPrefix = ""; };

  meta.license = stdenv.lib.licenses.bsd3;
  meta.platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin" "armv7l-linux" "aarch64-linux"];
  # AArch64 should work in theory but eventually some builds start segfaulting
  meta.platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin" "armv7l-linux" /* "aarch64-linux" */];
}