Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
useMpi ? false,
|
|
mpi,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "RAxML${lib.optionalString useMpi "-mpi"}";
|
|
version = "8.2.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stamatak";
|
|
repo = "standard-RAxML";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-w+Eqi0GhVira1H6ZnMNeZGBMzDjiGT7JSFpQEVXONyk=";
|
|
};
|
|
|
|
buildInputs = lib.optionals useMpi [ mpi ];
|
|
|
|
# TODO darwin, AVX and AVX2 makefile targets
|
|
buildPhase =
|
|
if useMpi then
|
|
''
|
|
make -f Makefile.MPI.gcc
|
|
''
|
|
else
|
|
''
|
|
make -f Makefile.SSE3.PTHREADS.gcc
|
|
'';
|
|
|
|
installPhase =
|
|
if useMpi then
|
|
''
|
|
mkdir -p $out/bin && cp raxmlHPC-MPI $out/bin
|
|
''
|
|
else
|
|
''
|
|
mkdir -p $out/bin && cp raxmlHPC-PTHREADS-SSE3 $out/bin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool for Phylogenetic Analysis and Post-Analysis of Large Phylogenies";
|
|
license = licenses.gpl3;
|
|
homepage = "https://sco.h-its.org/exelixis/web/software/raxml/";
|
|
maintainers = [ maintainers.unode ];
|
|
platforms = [
|
|
"i686-linux"
|
|
"x86_64-linux"
|
|
];
|
|
};
|
|
}
|