diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-07-11 16:36:10 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-07-12 14:29:09 +0200 |
commit | b10bff65be21a284a80f21dacf3caeecba245092 (patch) | |
tree | 17a1eea3b7c54b6966dbbf7b64e622c44b303985 /gnu/packages | |
parent | ee50cae529d9eccfc02b6b67d8dd06ddc7cf5fa3 (diff) |
gnu: r-mzr: Update to 2.34.1.
* gnu/packages/bioconductor.scm (r-mzr): Update to 2.34.1.
[properties]: Tell updater to not remove the "boost" input.
Diffstat (limited to 'gnu/packages')
-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 85a53fdd55..20add7af89 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -8016,18 +8016,20 @@ specific parser.") (define-public r-mzr (package (name "r-mzr") - (version "2.34.0") + (version "2.34.1") (source (origin (method url-fetch) (uri (bioconductor-uri "mzR" version)) (sha256 (base32 - "0dz9wqaawhkvswv4035xknlicia0m79r8n666s1yf59cfpmdqgs3")) + "1jsna4xwyph1gg72wwqlpavb65g5nc3db1vmcs1qcw1mdgasdjhk")) (modules '((guix build utils))) (snippet '(delete-file-recursively "src/boost")))) - (properties `((upstream-name . "mzR"))) + (properties + `((upstream-name . "mzR") + (updater-extra-inputs . ("boost")))) (build-system r-build-system) (arguments `(#:phases |