about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMatthew Justin Bauer <mjbauer95@gmail.com>2018-04-17 12:03:42 -0500
committerGitHub <noreply@github.com>2018-04-17 12:03:42 -0500
commit88098d58f22431487722adf9c66ead0cf70f84e2 (patch)
treed8cb2a0ff4dfe6b9dc2945f0f6ddbbb4d674abc0 /pkgs
parent0247e7e47f9c5dcbfc038e5a68fe472efee0ce6e (diff)
parentc478b6217fd493ebf5d4eebf8c5c282dbe0732c6 (diff)
downloadnixlib-88098d58f22431487722adf9c66ead0cf70f84e2.tar
nixlib-88098d58f22431487722adf9c66ead0cf70f84e2.tar.gz
nixlib-88098d58f22431487722adf9c66ead0cf70f84e2.tar.bz2
nixlib-88098d58f22431487722adf9c66ead0cf70f84e2.tar.lz
nixlib-88098d58f22431487722adf9c66ead0cf70f84e2.tar.xz
nixlib-88098d58f22431487722adf9c66ead0cf70f84e2.tar.zst
nixlib-88098d58f22431487722adf9c66ead0cf70f84e2.zip
Merge pull request #38701 from r-ryantm/auto-update/samtools
samtools: 1.7 -> 1.8
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/science/biology/samtools/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/biology/samtools/default.nix b/pkgs/applications/science/biology/samtools/default.nix
index 365057414e99..87e708526ef7 100644
--- a/pkgs/applications/science/biology/samtools/default.nix
+++ b/pkgs/applications/science/biology/samtools/default.nix
@@ -3,11 +3,11 @@
 stdenv.mkDerivation rec {
   name = "${pname}-${version}";
   pname = "samtools";
-  version = "1.7";
+  version = "1.8";
 
   src = fetchurl {
     url = "https://github.com/samtools/samtools/releases/download/${version}/${name}.tar.bz2";
-    sha256 = "e7b09673176aa32937abd80f95f432809e722f141b5342186dfef6a53df64ca1";
+    sha256 = "05myg7bs90i68qbqab9cdg9rqj2xh39azibrx82ipzc5kcfvqhn9";
   };
 
   nativeBuildInputs = [ perl ];