about summary refs log tree commit diff
path: root/pkgs/applications/science/biology/kallisto/default.nix
blob: 16639db17816359cbf3ffa321fbbdc1744667d53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchFromGitHub, cmake, hdf5, zlib }:

stdenv.mkDerivation rec {
  pname = "kallisto";
  version = "0.43.1";

  src = fetchFromGitHub {
    repo = "kallisto";
    owner = "pachterlab";
    rev = "v${version}";
    sha256 = "04697pf7jvy7vw126s1rn09q4iab9223jvb1nb0jn7ilwkq7pgwz";
  };

  nativeBuildInputs = [ cmake ];
  
  buildInputs = [ hdf5 zlib ];

  meta = with stdenv.lib; {
    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 ];
  };
}