bedtools: init at 2.26.0

This commit is contained in:
Justin Bedo 2017-03-07 15:54:31 +11:00 committed by Robert Helgesson
parent 661048c803
commit 7f214e6410
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{stdenv, fetchFromGitHub, zlib, python}:
stdenv.mkDerivation rec {
name = "bedtools-${version}";
version = "2.26.0";
src = fetchFromGitHub {
owner = "arq5x";
repo = "bedtools2";
rev = "v${version}";
sha256 = "1j2ia68rmcw3qksjm5gvv1cb84bh76vmln59mvncr2an23f5a3ss";
};
buildInputs = [ zlib python ];
buildPhase = "make prefix=$out SHELL=${stdenv.shell} -j $NIX_BUILD_CORES";
installPhase = "make prefix=$out SHELL=${stdenv.shell} install";
meta = with stdenv.lib; {
description = "A powerful toolset for genome arithmetic.";
license = licenses.gpl2;
homepage = https://bedtools.readthedocs.io/en/latest/;
maintainers = with maintainers; [ jbedo ];
platforms = platforms.unix;
};
}

View file

@ -16970,6 +16970,8 @@ with pkgs;
stdenv = overrideCC stdenv gcc49;
};
bedtools = callPackage ../applications/science/biology/bedtools/default.nix { };
bcftools = callPackage ../applications/science/biology/bcftools { };
ecopcr = callPackage ../applications/science/biology/ecopcr { };