diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-01-09 22:32:58 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-01-09 22:32:58 +0100 |
commit | 6e75790fc013a9df23f3c48d4d9da78200d5b9eb (patch) | |
tree | 68f21084a24b6085e93b2b4a4fb1c1e64fc9f7c8 /guix/import | |
parent | 387c486591234265f43d649a2f3fc35c26fd3246 (diff) |
import/cran: Fix Bioconductor updater.
* guix/import/cran.scm (latest-bioconductor-release): Use LATEST-VERSION
instead of VERSION, which is always #F.
Diffstat (limited to 'guix/import')
-rw-r--r-- | guix/import/cran.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guix/import/cran.scm b/guix/import/cran.scm index f6d24820a8..c4b36da12b 100644 --- a/guix/import/cran.scm +++ b/guix/import/cran.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2015, 2016, 2017, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net> @@ -732,12 +732,12 @@ s-expression corresponding to that package, or #f on failure." (define latest-version (latest-bioconductor-package-version upstream-name)) - (and version + (and latest-version ;; Bioconductor does not provide signatures. (upstream-source (package (package-name pkg)) (version latest-version) - (urls (bioconductor-uri upstream-name version)) + (urls (bioconductor-uri upstream-name latest-version)) (input-changes (changed-inputs pkg |