Merge pull request #48498 from dhess/haskell-aarch64-fixes

haskellPackages.language-nix: disable tests on aarch64.
This commit is contained in:
Peter Simons 2018-10-16 08:34:54 +02:00 committed by GitHub
commit 3f0bc92460
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -332,7 +332,7 @@ self: super: {
itanium-abi = dontCheck super.itanium-abi;
katt = dontCheck super.katt;
language-slice = dontCheck super.language-slice;
language-nix = if pkgs.stdenv.isi686 then dontCheck super.language-nix else super.language-nix;
language-nix = if (pkgs.stdenv.hostPlatform.isAarch64 || pkgs.stdenv.hostPlatform.isi686) then dontCheck super.language-nix else super.language-nix; # aarch64: https://ghc.haskell.org/trac/ghc/ticket/15275
ldap-client = dontCheck super.ldap-client;
lensref = dontCheck super.lensref;
lucid = dontCheck super.lucid; #https://github.com/chrisdone/lucid/issues/25