guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/05: build-system/r: Use %bioconductor-version.


From: guix-commits
Subject: 02/05: build-system/r: Use %bioconductor-version.
Date: Mon, 16 Sep 2019 06:26:35 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 41ca406fa54e69f61c55b11ffe5cf465192a907c
Author: Ricardo Wurmus <address@hidden>
Date:   Mon Sep 16 11:23:57 2019 +0200

    build-system/r: Use %bioconductor-version.
    
    * guix/build-system/r.scm (bioconductor-uri): Use %bioconductor-version
    instead of hard-coding the version string.
---
 guix/build-system/r.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/guix/build-system/r.scm b/guix/build-system/r.scm
index dd2a9fe..936ad97 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 <address@hidden>
+;;; Copyright © 2015, 2017, 2018, 2019 Ricardo Wurmus <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -24,6 +24,7 @@
   #:use-module (guix search-paths)
   #:use-module (guix build-system)
   #:use-module (guix build-system gnu)
+  #:use-module ((guix import cran) #:select (%bioconductor-version))
   #:use-module (ice-9 match)
   #:use-module (srfi srfi-26)
   #:export (%r-build-system-modules
@@ -58,8 +59,8 @@ release corresponding to NAME and VERSION."
                          type-url-part
                          "/src/contrib/"
                          name "_" version ".tar.gz")
-          ;; TODO: use %bioconductor-version from (guix import cran)
-          (string-append "https://bioconductor.org/packages/3.9";
+          (string-append "https://bioconductor.org/packages/";
+                         %bioconductor-version
                          type-url-part
                          "/src/contrib/Archive/"
                          name "_" version ".tar.gz"))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]