diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-07-11 16:37:11 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-07-12 14:29:09 +0200 |
commit | 558637533f3adbf00fecbd921de6435f6ef9f93d (patch) | |
tree | 32b675bdc187b804e81c2a75aee3c40720462bf7 /gnu | |
parent | b4cafa71ae50fd2a5f0f24abf6b4b77ba5227ff6 (diff) | |
download | guix-558637533f3adbf00fecbd921de6435f6ef9f93d.tar.gz |
gnu: r-gdsfmt: Update to 1.36.1.
* gnu/packages/bioconductor.scm (r-gdsfmt): Update to 1.36.1. [properties]: Tell updater to leave the extra inputs be.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioconductor.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index a49a00ea1d..912946d974 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -16394,14 +16394,14 @@ metrics, with methods for objects produced by the @code{methylumi} and (define-public r-gdsfmt (package (name "r-gdsfmt") - (version "1.36.0") + (version "1.36.1") (source (origin (method url-fetch) (uri (bioconductor-uri "gdsfmt" version)) (sha256 (base32 - "10k445cwb5jhgcr0zf85x24mvldwk26zpwh0wq4himr44aha3bwx")) + "11qib2znznzvyb0x9qm1nfg9lhyqy63yrdjicy7n3n6l8dfd2lx7")) (modules '((guix build utils))) ;; Remove bundled sources of zlib, lz4, and xz. Don't attempt to build ;; them and link with system libraries instead. @@ -16424,7 +16424,9 @@ metrics, with methods for objects produced by the @code{methylumi} and (substitute* "src/CoreArray/dStream.h" (("include \"../(ZLIB|LZ4|XZ/api)/(.*)\"" _ _ header) (string-append "include <" header ">"))))))) - (properties `((upstream-name . "gdsfmt"))) + (properties + `((upstream-name . "gdsfmt") + (updater-extra-inputs . ("lz4" "xz" "zlib")))) (build-system r-build-system) (inputs (list lz4 xz zlib)) |