mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: r-ncdfflow: Fix r-rhdf5libs link.
* gnu/packages/bioconductor.scm (r-ncdfflow): [arguments]: Avoid to have a plain directory on the list of libraries to link. Co-authored-by: Ricardo Wurmus <reka@elephly.net>.
This commit is contained in:
parent
2b224f904a
commit
0022e9f4c0
1 changed files with 11 additions and 0 deletions
|
@ -6110,6 +6110,17 @@ change point detection.")
|
||||||
"1knqc3ic2vpck7n7m7adxjz3ac70ra89d5gvlgp9r2q3kgaciwac"))))
|
"1knqc3ic2vpck7n7m7adxjz3ac70ra89d5gvlgp9r2q3kgaciwac"))))
|
||||||
(properties `((upstream-name . "ncdfFlow")))
|
(properties `((upstream-name . "ncdfFlow")))
|
||||||
(build-system r-build-system)
|
(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)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("zlib" ,zlib)))
|
`(("zlib" ,zlib)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue