Merge pull request #64289 from tadeokondrak/kallisto/update/0.46.0

kallisto: 0.43.1 -> 0.46.0
This commit is contained in:
worldofpeace 2019-08-31 23:06:06 -04:00 committed by GitHub
commit 732c0a0d53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,25 +1,28 @@
{ stdenv, fetchFromGitHub, cmake, hdf5, zlib }:
{ stdenv, fetchFromGitHub, autoconf, cmake, hdf5, zlib }:
stdenv.mkDerivation rec {
pname = "kallisto";
version = "0.43.1";
version = "0.46.0";
src = fetchFromGitHub {
repo = "kallisto";
owner = "pachterlab";
rev = "v${version}";
sha256 = "04697pf7jvy7vw126s1rn09q4iab9223jvb1nb0jn7ilwkq7pgwz";
sha256 = "09vgdqwpigl4x3sdw5vjfyknsllkli339mh8xapbf7ldm0jldfn9";
};
nativeBuildInputs = [ cmake ];
nativeBuildInputs = [ autoconf cmake ];
buildInputs = [ hdf5 zlib ];
# Parallel build fails in some cases: https://github.com/pachterlab/kallisto/issues/160
enableParallelBuilding = false;
meta = with stdenv.lib; {
description = "kallisto is a program for quantifying abundances of transcripts from RNA-Seq data";
homepage = https://pachterlab.github.io/kallisto;
description = "Kallisto is a program for quantifying abundances of transcripts from RNA-Seq data";
homepage = "https://pachterlab.github.io/kallisto";
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = [ maintainers.arcadio ];
maintainers = with maintainers; [ arcadio ];
};
}