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:
Robert Scott 2021-11-20 19:17:57 +00:00
parent 8dfdd0e468
commit ec24bab90e

View file

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