3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add htslib-1.14.

* gnu/packages/bioinformatics.scm (htslib-1.14): New variable.
This commit is contained in:
Ricardo Wurmus 2022-12-21 14:40:29 +01:00
parent fe5836feaf
commit 5ccc017389
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -4768,6 +4768,18 @@ data. It also provides the @command{bgzip}, @command{htsfile}, and
;; the rest is released under the Expat license
(license (list license:expat license:bsd-3))))
(define-public htslib-1.14
(package/inherit htslib
(version "1.14")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/samtools/htslib/releases/download/"
version "/htslib-" version ".tar.bz2"))
(sha256
(base32
"0pwk8yhhvb85mi1d2qhwsb4samc3rmbcrq7b1s0jz0glaa7in8pd"))))))
(define-public htslib-1.12
(package/inherit htslib
(version "1.12")