mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01: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
1 changed files with 2 additions and 1 deletions
|
@ -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 a new issue