Merge pull request #48498 from dhess/haskell-aarch64-fixes
haskellPackages.language-nix: disable tests on aarch64.
This commit is contained in:
commit
3f0bc92460
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user