diff options
author | Roel Janssen <roel@gnu.org> | 2018-04-27 01:05:18 +0200 |
---|---|---|
committer | Roel Janssen <roel@gnu.org> | 2018-04-27 01:11:42 +0200 |
commit | cbd9f91c326f5f57fb9dd4374069b215e2e7a5f6 (patch) | |
tree | 13ce0a19b17498434a2c17fb92593e2ebc69a1d0 /gnu/packages/bioinformatics.scm | |
parent | 8df0267ad4cef8e86ac34a8e3b95cd1ef6177efb (diff) | |
download | guix-cbd9f91c326f5f57fb9dd4374069b215e2e7a5f6.tar guix-cbd9f91c326f5f57fb9dd4374069b215e2e7a5f6.tar.gz |
gnu: bcftools: Update to 1.8.
* gnu/packages/bioinformatics.scm (bcftools): Update to 1.8.
* gnu/local.mk: Remove patch.
* gnu/packages/patches/bcftools-regidx-unsigned-char.patch: Remove file.
Diffstat (limited to 'gnu/packages/bioinformatics.scm')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index fc5fe41115..d8b17f51e4 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -285,7 +285,7 @@ BAM files.") (define-public bcftools (package (name "bcftools") - (version "1.5") + (version "1.8") (source (origin (method url-fetch) (uri (string-append @@ -293,12 +293,11 @@ BAM files.") version "/bcftools-" version ".tar.bz2")) (sha256 (base32 - "0093hkkvxmbwfaa7905s6185jymynvg42kq6sxv7fili11l5mxwz")) - (patches (search-patches "bcftools-regidx-unsigned-char.patch")) + "1vgw2mwngq20c530zim52zvgmw1lci8rzl33pvh44xqk3xlzvjsa")) (modules '((guix build utils))) (snippet ;; Delete bundled htslib. - '(delete-file-recursively "htslib-1.5")))) + '(delete-file-recursively "htslib-1.8")))) (build-system gnu-build-system) (arguments `(#:test-target "test" |