1 { lib, stdenv, fetchFromGitHub, autoconf, cmake, hdf5, zlib }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-hfdeztEyHvuOnLS71oSv8sPqFe2UCX5KlANqrT/Gfx8=";
14 nativeBuildInputs = [ autoconf cmake ];
16 buildInputs = [ hdf5 zlib ];
18 cmakeFlags = [ "-DUSE_HDF5=ON" ];
20 # Parallel build fails in some cases: https://github.com/pachterlab/kallisto/issues/160
21 enableParallelBuilding = false;
24 description = "Program for quantifying abundances of transcripts from RNA-Seq data";
25 mainProgram = "kallisto";
26 homepage = "https://pachterlab.github.io/kallisto";
27 license = licenses.bsd2;
28 platforms = platforms.linux;
29 maintainers = with maintainers; [ arcadio ];