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

gnu: r-rhdf5: Update to 2.36.0.

* gnu/packages/bioconductor.scm (r-rhdf5): Update to 2.36.0.
[arguments]: Remove.
This commit is contained in:
Ricardo Wurmus 2021-06-05 01:48:30 +02:00
parent 87d06a725f
commit 782d27f77d
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3855,25 +3855,14 @@ browser.")
(define-public r-rhdf5
(package
(name "r-rhdf5")
(version "2.34.0")
(version "2.36.0")
(source (origin
(method url-fetch)
(uri (bioconductor-uri "rhdf5" version))
(sha256
(base32
"0almr1vscrgj5g4dyrags131wia2pmdbdidlpskbgm44ha6hpmqi"))))
"1a5kw9ry9cr258al0x3q0ss5xn1ymscdypx51vzzgzamhy7dqakz"))))
(build-system r-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'fix-linking
(lambda _
(substitute* "src/Makevars"
;; This is to avoid having a plain directory on the list of
;; libraries to link.
(("\\(RHDF5_LIBS\\)" match)
(string-append match "/libhdf5.a")))
#t)))))
(propagated-inputs
`(("r-rhdf5filters" ,r-rhdf5filters)
("r-rhdf5lib" ,r-rhdf5lib)))