mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
import/cran: Fix calls to CRAN->GUIX-PACKAGE.
* guix/import/cran.scm (cran->guix-package, latest-bioconductor-release): Invoke CRAN->GUIX-PACKAGE with #:REPO keyword argument.
This commit is contained in:
parent
a6805ad0b8
commit
a689c85af4
1 changed files with 4 additions and 4 deletions
|
@ -578,13 +578,13 @@ (define cran->guix-package
|
|||
(case repo
|
||||
((git)
|
||||
;; Retry import from Bioconductor
|
||||
(cran->guix-package package-name 'bioconductor))
|
||||
(cran->guix-package package-name #:repo 'bioconductor))
|
||||
((hg)
|
||||
;; Retry import from Bioconductor
|
||||
(cran->guix-package package-name 'bioconductor))
|
||||
(cran->guix-package package-name #:repo 'bioconductor))
|
||||
((bioconductor)
|
||||
;; Retry import from CRAN
|
||||
(cran->guix-package package-name 'cran))
|
||||
(cran->guix-package package-name #:repo 'cran))
|
||||
(else (values #f '()))))))))
|
||||
|
||||
(define* (cran-recursive-import package-name #:key (repo 'cran))
|
||||
|
@ -655,7 +655,7 @@ (define version
|
|||
(input-changes
|
||||
(changed-inputs
|
||||
pkg
|
||||
(cran->guix-package upstream-name 'bioconductor))))))
|
||||
(cran->guix-package upstream-name #:repo 'bioconductor))))))
|
||||
|
||||
(define (cran-package? package)
|
||||
"Return true if PACKAGE is an R package from CRAN."
|
||||
|
|
Loading…
Reference in a new issue