Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 76f82c2303ce
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 732c0a0d533e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Aug 31, 2019

  1. Copy the full SHA
    2aa9b65 View commit details

Commits on Sep 1, 2019

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

    kallisto: 0.43.1 -> 0.46.0
    worldofpeace authored Sep 1, 2019
    Copy the full SHA
    732c0a0 View commit details
Showing with 11 additions and 8 deletions.
  1. +11 −8 pkgs/applications/science/biology/kallisto/default.nix
19 changes: 11 additions & 8 deletions pkgs/applications/science/biology/kallisto/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}