haskell.compiler.ghcHEAD: disable Hydra build on aarch64-linux

This commit is contained in:
(cdep)illabout 2021-05-19 10:30:23 +09:00
parent be1e5f9698
commit 721c8ab307
No known key found for this signature in database
GPG key ID: 462E0C03D11422F4

View file

@ -261,6 +261,8 @@ stdenv.mkDerivation (rec {
description = "The Glasgow Haskell Compiler";
maintainers = with lib.maintainers; [ marcweber andres peti ];
inherit (ghc.meta) license platforms;
# ghcHEAD times out on aarch64-linux on Hydra.
hydraPlatforms = builtins.filter (p: p != "aarch64-linux") ghc.meta.platforms;
};
dontStrip = (targetPlatform.useAndroidPrebuilt || targetPlatform.isWasm);