diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-06-05 01:39:56 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-06-05 09:12:40 +0200 |
commit | 87d06a725f9bebd117dd9f88efe1a4a53275ac1f (patch) | |
tree | 4d872be411860ea0d1583e303b3b3f8dcfa5e28f /gnu | |
parent | 5d13aab6cad11255eed430e5fef0ffaaa51978f1 (diff) | |
download | guix-87d06a725f9bebd117dd9f88efe1a4a53275ac1f.tar.gz guix-87d06a725f9bebd117dd9f88efe1a4a53275ac1f.zip |
gnu: r-mzr: Update to 2.26.0.
* gnu/packages/bioconductor.scm (r-mzr): Update to 2.26.0.
[arguments]: Remove obsolute substitution.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioconductor.scm | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index f87a8d3bd0..6f466ca4aa 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -3563,14 +3563,14 @@ specific parser.") (define-public r-mzr (package (name "r-mzr") - (version "2.24.1") + (version "2.26.0") (source (origin (method url-fetch) (uri (bioconductor-uri "mzR" version)) (sha256 (base32 - "0ik0yrjhvk8r5pm990chn2aadp0gqzzkkm0027682ky34xp142sg")) + "1m5xvnv0rxyrfri4jwyyryr13d55nyhqvfc5xxg5mpskw2v029kp")) (modules '((guix build utils))) (snippet '(begin @@ -3585,10 +3585,6 @@ specific parser.") (lambda _ (substitute* "src/Makevars" (("\\./boost/libs.*") "") - ;; This is to avoid having a plain directory on the list of - ;; libraries to link. - (("\\(RHDF5_LIBS\\)" match) - (string-append match "/libhdf5.a")) (("PKG_LIBS=") "PKG_LIBS=$(BOOST_LIBS) ") (("\\ARCH_OBJS=" line) (string-append line @@ -3597,7 +3593,7 @@ specific parser.") #t))))) (inputs `(;; Our default boost package won't work here, unfortunately, even with - ;; mzR version 2.24.1. + ;; mzR version 2.26.0. ("boost" ,boost-for-mysql) ; use this instead of the bundled boost sources ("zlib" ,zlib))) (propagated-inputs |