haskellPackages.hsignal: restrict platforms to x86

SSE(2) is an intel instruction set
This commit is contained in:
sternenseemann 2021-05-07 13:08:31 +02:00
parent 6c424a7e41
commit 4b137c9418
1 changed files with 5 additions and 0 deletions

View File

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