3
0
Fork 0
forked from mirrors/nixpkgs

htslib: init at 1.3.1

This commit is contained in:
mimadrid 2016-06-24 15:08:16 +02:00
parent fbde3a7452
commit d3da5cbf44
No known key found for this signature in database
GPG key ID: 4D0F6894D41C6957
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "htslib";
version = "1.3.1";
src = fetchurl {
url = "https://github.com/samtools/${pname}/releases/download/${version}/${name}.tar.bz2";
sha256 = "49d53a2395b8cef7d1d11270a09de888df8ba06f70fe68282e8235ee04124ae6";
};
buildInputs = [ zlib ];
meta = with stdenv.lib; {
description = "A C library for reading/writing high-throughput sequencing data";
license = licenses.mit;
homepage = http://www.htslib.org/;
platforms = platforms.unix;
maintainers = [ maintainers.mimadrid ];
};
}

View file

@ -15885,6 +15885,8 @@ in
emboss = callPackage ../applications/science/biology/emboss { };
htslib = callPackage ../development/libraries/science/biology/htslib { };
neuron = callPackage ../applications/science/biology/neuron { };
neuron-mpi = appendToName "mpi" (neuron.override {