587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, xxd
|
|
, perl
|
|
, installShellFiles
|
|
, enableAvx2 ? stdenv.hostPlatform.avx2Support
|
|
, enableSse4_1 ? stdenv.hostPlatform.sse4_1Support
|
|
, enableMpi ? false
|
|
, mpi
|
|
, openmp
|
|
, zlib
|
|
, bzip2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mmseqs2";
|
|
version = "15-6f452";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "soedinglab";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-L+zOWrGkCLz/wqpBuji8H4/93sDFpcfnDOE8FHq1j84=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake xxd perl installShellFiles ];
|
|
cmakeFlags =
|
|
lib.optional enableAvx2 "-DHAVE_AVX2=1"
|
|
++ lib.optional enableSse4_1 "-DHAVE_SSE4_1=1"
|
|
++ lib.optional enableMpi "-DHAVE_MPI=1";
|
|
|
|
buildInputs =
|
|
lib.optionals stdenv.cc.isClang [ openmp zlib bzip2 ]
|
|
++ lib.optional enableMpi mpi;
|
|
|
|
postInstall = ''
|
|
installShellCompletion --bash --cmd mmseqs $out/util/bash-completion.sh
|
|
rm -r $out/util/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Ultra fast and sensitive sequence search and clustering suite";
|
|
mainProgram = "mmseqs";
|
|
homepage = "https://mmseqs.com/";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ natsukium ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|