[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/07: gnu: samtools: Update to 1.9.
From: |
Ricardo Wurmus |
Subject: |
02/07: gnu: samtools: Update to 1.9. |
Date: |
Fri, 5 Oct 2018 03:22:09 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 4ae4a15232bff0e93cbfc5d48e49a29a23a73cd6
Author: Ricardo Wurmus <address@hidden>
Date: Thu Oct 4 21:15:47 2018 +0200
gnu: samtools: Update to 1.9.
* gnu/packages/bioinformatics.scm (samtools): Update to 1.9.
[origin]: Remove bundled htslib sources.
[arguments]: Remove obsolete make-flags.
---
gnu/packages/bioinformatics.scm | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 64d7e1c..996e373 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -4997,7 +4997,7 @@ to the user's query of interest.")
(define-public samtools
(package
(name "samtools")
- (version "1.8")
+ (version "1.9")
(source
(origin
(method url-fetch)
@@ -5006,15 +5006,19 @@ to the user's query of interest.")
version "/samtools-" version ".tar.bz2"))
(sha256
(base32
- "05myg7bs90i68qbqab9cdg9rqj2xh39azibrx82ipzc5kcfvqhn9"))))
+ "10ilqbmm7ri8z431sn90lvbjwizd0hhkf9rcqw8j823hf26nhgq8"))
+ (modules '((guix build utils)))
+ (snippet '(begin
+ ;; Delete bundled htslib.
+ (delete-file-recursively "htslib-1.9")
+ #t))))
(build-system gnu-build-system)
(arguments
`(#:modules ((ice-9 ftw)
(ice-9 regex)
(guix build gnu-build-system)
(guix build utils))
- #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out")))
- #:configure-flags (list "--with-ncurses" "--with-htslib=system")
+ #:configure-flags (list "--with-ncurses")
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-tests
- branch master updated (4a5e2a9 -> a679821), Ricardo Wurmus, 2018/10/05
- 01/07: gnu: htslib: Update to 1.9., Ricardo Wurmus, 2018/10/05
- 02/07: gnu: samtools: Update to 1.9.,
Ricardo Wurmus <=
- 03/07: gnu: bcftools: Update to 1.9., Ricardo Wurmus, 2018/10/05
- 07/07: gnu: samtools-0.1: Adjust to match changes in samtools., Ricardo Wurmus, 2018/10/05
- 06/07: gnu: deeptools: Update to 3.1.2., Ricardo Wurmus, 2018/10/05
- 04/07: gnu: python-plotly: Add python-pandas to inputs., Ricardo Wurmus, 2018/10/05
- 05/07: gnu: python-pysam: Update to 0.15.1., Ricardo Wurmus, 2018/10/05