about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-04-10 13:04:09 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-04-10 13:04:09 -0700
commitc478b6217fd493ebf5d4eebf8c5c282dbe0732c6 (patch)
tree3bcb3d732a83c380db59af249067595cffbec8f4 /pkgs
parentf28bf68bc4f93193d296718a37f94189f91ab14d (diff)
downloadnixlib-c478b6217fd493ebf5d4eebf8c5c282dbe0732c6.tar
nixlib-c478b6217fd493ebf5d4eebf8c5c282dbe0732c6.tar.gz
nixlib-c478b6217fd493ebf5d4eebf8c5c282dbe0732c6.tar.bz2
nixlib-c478b6217fd493ebf5d4eebf8c5c282dbe0732c6.tar.lz
nixlib-c478b6217fd493ebf5d4eebf8c5c282dbe0732c6.tar.xz
nixlib-c478b6217fd493ebf5d4eebf8c5c282dbe0732c6.tar.zst
nixlib-c478b6217fd493ebf5d4eebf8c5c282dbe0732c6.zip
samtools: 1.7 -> 1.8
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/samtools/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/ip1zr4rg4pwq8f3fs8ar570l0zdicai7-samtools-1.8/bin/samtools --help’ got 0 exit code
- ran ‘/nix/store/ip1zr4rg4pwq8f3fs8ar570l0zdicai7-samtools-1.8/bin/samtools help’ got 0 exit code
- ran ‘/nix/store/ip1zr4rg4pwq8f3fs8ar570l0zdicai7-samtools-1.8/bin/blast2sam.pl -h’ got 0 exit code
- ran ‘/nix/store/ip1zr4rg4pwq8f3fs8ar570l0zdicai7-samtools-1.8/bin/blast2sam.pl --help’ got 0 exit code
- ran ‘/nix/store/ip1zr4rg4pwq8f3fs8ar570l0zdicai7-samtools-1.8/bin/blast2sam.pl help’ got 0 exit code
- ran ‘/nix/store/ip1zr4rg4pwq8f3fs8ar570l0zdicai7-samtools-1.8/bin/novo2sam.pl help’ got 0 exit code
- ran ‘/nix/store/ip1zr4rg4pwq8f3fs8ar570l0zdicai7-samtools-1.8/bin/psl2sam.pl -h’ got 0 exit code
- ran ‘/nix/store/ip1zr4rg4pwq8f3fs8ar570l0zdicai7-samtools-1.8/bin/psl2sam.pl --help’ got 0 exit code
- ran ‘/nix/store/ip1zr4rg4pwq8f3fs8ar570l0zdicai7-samtools-1.8/bin/psl2sam.pl help’ got 0 exit code
- ran ‘/nix/store/ip1zr4rg4pwq8f3fs8ar570l0zdicai7-samtools-1.8/bin/soap2sam.pl -h’ got 0 exit code
- ran ‘/nix/store/ip1zr4rg4pwq8f3fs8ar570l0zdicai7-samtools-1.8/bin/soap2sam.pl --help’ got 0 exit code
- ran ‘/nix/store/ip1zr4rg4pwq8f3fs8ar570l0zdicai7-samtools-1.8/bin/soap2sam.pl help’ got 0 exit code
- found 1.8 with grep in /nix/store/ip1zr4rg4pwq8f3fs8ar570l0zdicai7-samtools-1.8
- directory tree listing: https://gist.github.com/4673ea3645eb509035dcb386c4ad1da2
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 ];