Skip to content

Commit

Permalink
Update htslib and dependent packages
Browse files Browse the repository at this point in the history
  • Loading branch information
orivej committed Sep 21, 2018
2 parents 7df10f3 + e78cf6e commit 39817f7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions pkgs/applications/science/biology/platypus/default.nix
Expand Up @@ -4,13 +4,13 @@ let python = python27.withPackages (ps: with ps; [ cython ]);

in stdenv.mkDerivation rec {
name = "platypus-unstable-${version}";
version = "2017-03-07";
version = "2018-07-22";

src = fetchFromGitHub {
owner = "andyrimmer";
repo = "Platypus";
rev = "cbbd914";
sha256 = "0xgj3pl7n4c12j5pp5qyjfk4rsvb5inwzrpcbhdf3br5f3mmdsb9";
rev = "3e72641c69800da0cd4906b090298e654d316ee1";
sha256 = "0nah6r54b8xm778gqyb8b7rsd76z8ji4g73sm6rvpw5s96iib1vw";
};

buildInputs = [ htslib python zlib makeWrapper ];
Expand Down
4 changes: 2 additions & 2 deletions pkgs/applications/science/biology/samtools/default.nix
Expand Up @@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "samtools";
version = "1.8";
version = "1.9";

src = fetchurl {
url = "https://github.com/samtools/samtools/releases/download/${version}/${name}.tar.bz2";
sha256 = "05myg7bs90i68qbqab9cdg9rqj2xh39azibrx82ipzc5kcfvqhn9";
sha256 = "10ilqbmm7ri8z431sn90lvbjwizd0hhkf9rcqw8j823hf26nhgq8";
};

nativeBuildInputs = [ perl ];
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/libraries/science/biology/htslib/default.nix
Expand Up @@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "htslib";
version = "1.7";
version = "1.9";

src = fetchurl {
url = "https://github.com/samtools/htslib/releases/download/${version}/${name}.tar.bz2";
sha256 = "be3d4e25c256acdd41bebb8a7ad55e89bb18e2fc7fc336124b1e2c82ae8886c6";
sha256 = "16ljv43sc3fxmv63w7b2ff8m1s7h89xhazwmbm1bicz8axq8fjz0";
};

# perl is only used during the check phase.
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pysam/default.nix
Expand Up @@ -14,7 +14,7 @@

buildPythonPackage rec {
pname = "pysam";
version = "0.13.0";
version = "0.15.1";

# Fetching from GitHub instead of PyPi cause the 0.13 src release on PyPi is
# missing some files which cause test failures.
Expand All @@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "pysam-developers";
repo = "pysam";
rev = "v${version}";
sha256 = "1lwbcl38w1x0gciw5psjp87msmv9zzkgiqikg9b83dqaw2y5az1i";
sha256 = "1vj367w6xbn9bpmksm162l1aipf7cj97h1q83y7jcpm33ihwpf7x";
};

buildInputs = [ bzip2 curl cython lzma zlib ];
Expand Down

0 comments on commit 39817f7

Please sign in to comment.