1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

est-sfs: init at 2.03

This commit is contained in:
Bruno Bzeznik 2019-07-16 10:12:15 +02:00
parent 93d1127734
commit 9a22c8c697
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, fetchurl, gsl }:
stdenv.mkDerivation rec {
pname = "est-sfs";
version = "2.03";
src = fetchurl {
url = "mirror://sourceforge/est-usfs/${pname}-release-${version}.tar.gz";
sha256 = "1hvamrgagz0xi89w8qafyd9mjrdpyika8zm22drddnjkp4sdj65n";
};
buildInputs = [ gsl ];
installPhase = ''
mkdir -p $out/bin
mkdir -p $out/share/doc/${pname}
cp est-sfs $out/bin
cp est-sfs-documentation.pdf $out/share/doc/${pname}
'';
meta = with stdenv.lib; {
homepage = https://sourceforge.net/projects/est-usfs;
description = "Estimate the unfolded site frequency spectrum and ancestral states";
license = licenses.gpl3;
maintainers = [ maintainers.bzizou ];
platforms = platforms.all;
};
}

View file

@ -21880,6 +21880,8 @@ in
emboss = callPackage ../applications/science/biology/emboss { };
est-sfs = callPackage ../applications/science/biology/est-sfs { };
ezminc = callPackage ../applications/science/biology/EZminc { };
hisat2 = callPackage ../applications/science/biology/hisat2 { };