gnu: samtools: Update to 1.19.
* gnu/packages/bioinformatics.scm (samtools): Update to 1.19. [source]: Simplify snippet. Change-Id: If0e02bbbc8e0443eb418c078dc47525f432d7ebe
This commit is contained in:
parent
eda31ffaab
commit
e0369ba57d
1 changed files with 7 additions and 7 deletions
|
@ -8484,20 +8484,20 @@ to the user's query of interest.")
|
||||||
(define-public samtools
|
(define-public samtools
|
||||||
(package
|
(package
|
||||||
(name "samtools")
|
(name "samtools")
|
||||||
(version "1.14")
|
(version "1.19")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
(string-append "mirror://sourceforge/samtools/samtools/"
|
(string-append "https://github.com/samtools/samtools"
|
||||||
version "/samtools-" version ".tar.bz2"))
|
"/releases/download/" version
|
||||||
|
"/samtools-" version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0x3xdda78ac5vx66b3jdsv9sfhyz4npl4znl1zbaf3lbm6xdlhck"))
|
"10wby07w33rfypy4kf73v9wwnbyh0lrazbsmrgrvcl88w8c3nszs"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet '(begin
|
|
||||||
;; Delete bundled htslib.
|
;; Delete bundled htslib.
|
||||||
(delete-file-recursively "htslib-1.14")))))
|
(snippet '(delete-file-recursively "htslib-1.19"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list "--with-ncurses")
|
`(#:configure-flags (list "--with-ncurses")
|
||||||
|
|
Reference in a new issue