mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
25 lines
792 B
Nix
25 lines
792 B
Nix
{ gccStdenv, fetchurl, zlib, openmpi }:
|
|
|
|
gccStdenv.mkDerivation rec {
|
|
version = "3.7.2";
|
|
pname = "migrate";
|
|
|
|
src = fetchurl {
|
|
url = "https://peterbeerli.com/migrate-html5/download_version3/${pname}-${version}.src.tar.gz";
|
|
sha256 = "1p2364ffjc56i82snzvjpy6pkf6wvqwvlvlqxliscx2c303fxs8v";
|
|
};
|
|
|
|
buildInputs = [ zlib openmpi ];
|
|
setSourceRoot = ''sourceRoot=$(echo */src)'';
|
|
buildFlags = [ "thread" "mpis" ];
|
|
preInstall = "mkdir -p $out/man/man1";
|
|
|
|
meta = with gccStdenv.lib; {
|
|
description = "Estimates population size, migration, population splitting parameters using genetic/genomic data";
|
|
homepage = "https://peterbeerli.com/migrate-html5/index.html";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.bzizou ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|