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
1 changed files with 5 additions and 0 deletions

View File

@ -793,4 +793,9 @@ self: super: builtins.intersectAttrs super {
pkgs.zlib pkgs.zlib
] ++ (drv.librarySystemDepends or []); ] ++ (drv.librarySystemDepends or []);
}); });
# test suite uses x86 assembler
inline-asm = overrideCabal super.inline-asm {
doCheck = pkgs.stdenv.hostPlatform.isx86;
};
} }