Merge pull request #34199 from arcadio/kallisto

kallisto: init at 0.43.1

authored by Samuel Leathers and committed by GitHub efdb0983 83d5ce37

+28
+1
lib/maintainers.nix
··· 55 antonxy = "Anton Schirg <anton.schirg@posteo.de>"; 56 apeschar = "Albert Peschar <albert@peschar.net>"; 57 apeyroux = "Alexandre Peyroux <alex@px.io>"; 58 ardumont = "Antoine R. Dumont <eniotna.t@gmail.com>"; 59 aristid = "Aristid Breitkreuz <aristidb@gmail.com>"; 60 arobyn = "Alexei Robyn <shados@shados.net>";
··· 55 antonxy = "Anton Schirg <anton.schirg@posteo.de>"; 56 apeschar = "Albert Peschar <albert@peschar.net>"; 57 apeyroux = "Alexandre Peyroux <alex@px.io>"; 58 + arcadio = "Arcadio Rubio García <arc@well.ox.ac.uk>"; 59 ardumont = "Antoine R. Dumont <eniotna.t@gmail.com>"; 60 aristid = "Aristid Breitkreuz <aristidb@gmail.com>"; 61 arobyn = "Alexei Robyn <shados@shados.net>";
+25
pkgs/applications/science/biology/kallisto/default.nix
···
··· 1 + { stdenv, fetchFromGitHub, cmake, hdf5, zlib }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "kallisto-${version}"; 5 + version = "0.43.1"; 6 + 7 + src = fetchFromGitHub { 8 + repo = "kallisto"; 9 + owner = "pachterlab"; 10 + rev = "v${version}"; 11 + sha256 = "04697pf7jvy7vw126s1rn09q4iab9223jvb1nb0jn7ilwkq7pgwz"; 12 + }; 13 + 14 + nativeBuildInputs = [ cmake ]; 15 + 16 + buildInputs = [ hdf5 zlib ]; 17 + 18 + meta = with stdenv.lib; { 19 + description = "kallisto is a program for quantifying abundances of transcripts from RNA-Seq data"; 20 + homepage = https://pachterlab.github.io/kallisto; 21 + license = licenses.bsd2; 22 + platforms = platforms.linux; 23 + maintainers = [ maintainers.arcadio ]; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 18945 neuron-version = neuron.version; 18946 }; 18947 18948 neuron = callPackage ../applications/science/biology/neuron { 18949 python = null; 18950 };
··· 18945 neuron-version = neuron.version; 18946 }; 18947 18948 + kallisto = callPackage ../applications/science/biology/kallisto { }; 18949 + 18950 neuron = callPackage ../applications/science/biology/neuron { 18951 python = null; 18952 };