forked from mirrors/nixpkgs
haskellPackages.iniline-asm: only test on x86
x86 assembler doesn't compile on aarch64 of course.
This commit is contained in:
parent
d640ce886a
commit
84f49ed51f
|
@ -793,4 +793,9 @@ self: super: builtins.intersectAttrs super {
|
|||
pkgs.zlib
|
||||
] ++ (drv.librarySystemDepends or []);
|
||||
});
|
||||
|
||||
# test suite uses x86 assembler
|
||||
inline-asm = overrideCabal super.inline-asm {
|
||||
doCheck = pkgs.stdenv.hostPlatform.isx86;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue