haskellPackages.hsignal: restrict platforms to x86
SSE(2) is an intel instruction set
This commit is contained in:
parent
6c424a7e41
commit
4b137c9418
|
@ -867,4 +867,9 @@ self: super: builtins.intersectAttrs super {
|
||||||
|
|
||||||
# Pass the correct libarchive into the package.
|
# Pass the correct libarchive into the package.
|
||||||
streamly-archive = super.streamly-archive.override { archive = pkgs.libarchive; };
|
streamly-archive = super.streamly-archive.override { archive = pkgs.libarchive; };
|
||||||
|
|
||||||
|
# passes the -msse2 flag which only works on x86 platforms
|
||||||
|
hsignal = overrideCabal super.hsignal {
|
||||||
|
platforms = pkgs.lib.platforms.x86;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue