haskellPackages.inline-asm: restrict to x86

Main executable uses x86 assembler, so we can't build it anywhere at
all.
This commit is contained in:
sternenseemann 2021-05-18 17:46:04 +02:00
parent f95953424c
commit a9a5465f84

View File

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