biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / science / biology / kallisto / default.nix
bloba375df35dd3eed1aed091d75ee3e1fbe3f7912a7
1 { lib, stdenv, fetchFromGitHub, autoconf, cmake, hdf5, zlib }:
3 stdenv.mkDerivation rec {
4   pname = "kallisto";
5   version = "0.51.1";
7   src = fetchFromGitHub {
8     repo = "kallisto";
9     owner = "pachterlab";
10     rev = "v${version}";
11     sha256 = "sha256-hfdeztEyHvuOnLS71oSv8sPqFe2UCX5KlANqrT/Gfx8=";
12   };
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;
23   meta = with lib; {
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 ];
30   };