3
0
Fork 0
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:
sternenseemann 2021-05-18 17:03:48 +02:00
parent d640ce886a
commit 84f49ed51f

View file

@ -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;
};
}