diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-06-12 15:49:57 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-06-13 01:19:38 +0200 |
commit | 8e518d4802891ea8398aab7259f823c3cc648d64 (patch) | |
tree | 9a86b4f02c0951e6fc7cfc21aacd1615732206d1 /guix/build-system | |
parent | a620d22ea827a64ecfaead165e5b78be9861f324 (diff) |
guix: Update to Bioconductor 3.11.
* guix/build-system/r.scm (bioconductor-uri): Use new URL.
* guix/import/cran.scm (%bioconductor-version): Update to 3.11.
Diffstat (limited to 'guix/build-system')
-rw-r--r-- | guix/build-system/r.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/build-system/r.scm b/guix/build-system/r.scm index 2d328764b0..c8ec9abd0d 100644 --- a/guix/build-system/r.scm +++ b/guix/build-system/r.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015, 2017, 2018 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2015, 2017, 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -59,7 +59,7 @@ release corresponding to NAME and VERSION." "/src/contrib/" name "_" version ".tar.gz") ;; TODO: use %bioconductor-version from (guix import cran) - (string-append "https://bioconductor.org/packages/3.10" + (string-append "https://bioconductor.org/packages/3.11" type-url-part "/src/contrib/Archive/" name "_" version ".tar.gz")))) |