mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
Revert "build-system/r: Use %bioconductor-version."
This reverts commit 41ca406fa5
.
This commit breaks 'guix pull', as reported by Hao Chen.
This commit is contained in:
parent
518fd3b659
commit
74e7465c9b
1 changed files with 3 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2015, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2015, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -24,7 +24,6 @@ (define-module (guix build-system r)
|
|||
#: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
|
||||
|
@ -59,8 +58,8 @@ (define* (bioconductor-uri name version #:optional type)
|
|||
type-url-part
|
||||
"/src/contrib/"
|
||||
name "_" version ".tar.gz")
|
||||
(string-append "https://bioconductor.org/packages/"
|
||||
%bioconductor-version
|
||||
;; TODO: use %bioconductor-version from (guix import cran)
|
||||
(string-append "https://bioconductor.org/packages/3.9"
|
||||
type-url-part
|
||||
"/src/contrib/Archive/"
|
||||
name "_" version ".tar.gz"))))
|
||||
|
|
Loading…
Reference in a new issue