mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
hmmer: restrict platforms to x86_64
technically big-endian powerpc with VMX is also supported, but on x86, SSE is apparently *required* which means we can't build a pure i686 version
This commit is contained in:
parent
8dfdd0e468
commit
ec24bab90e
@ -20,6 +20,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://hmmer.org/";
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.iimog ];
|
||||
platforms = platforms.unix;
|
||||
# at least SSE is *required*
|
||||
platforms = platforms.x86_64;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user