haskell.compiler.ghcHEAD: mark broken on aarch64

This commit is contained in:
(cdep)illabout 2021-05-16 16:52:08 +09:00
parent b04a7d654c
commit d1de348fdc
No known key found for this signature in database
GPG Key ID: 462E0C03D11422F4

View File

@ -258,7 +258,10 @@ stdenv.mkDerivation (rec {
homepage = "http://haskell.org/ghc"; homepage = "http://haskell.org/ghc";
description = "The Glasgow Haskell Compiler"; description = "The Glasgow Haskell Compiler";
maintainers = with lib.maintainers; [ marcweber andres peti ]; maintainers = with lib.maintainers; [ marcweber andres peti ];
inherit (ghc.meta) license platforms; inherit (ghc.meta) license;
# GHC-HEAD does not appear to compile on aarch64.
broken = stdenv.isAarch64;
platforms = builtins.filter (p: p != "aarch64-linux") ghc.meta.platforms;
}; };
dontStrip = (targetPlatform.useAndroidPrebuilt || targetPlatform.isWasm); dontStrip = (targetPlatform.useAndroidPrebuilt || targetPlatform.isWasm);