mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-09 12:49:45 -05:00
gnu: Add r-versions.
* gnu/packages/cran.scm (r-versions): New variable.
This commit is contained in:
parent
1a1ba08758
commit
a581caa00d
1 changed files with 21 additions and 0 deletions
|
@ -19120,3 +19120,24 @@ (define-public r-archivist
|
||||||
creation or other properties. It also makes it easy to restore such
|
creation or other properties. It also makes it easy to restore such
|
||||||
artifacts.")
|
artifacts.")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public r-versions
|
||||||
|
(package
|
||||||
|
(name "r-versions")
|
||||||
|
(version "0.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "versions" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0zm49j785dgv7fyr1yl9q5f0dsk8hhpim5q5bpkgrkzv7pwjribd"))))
|
||||||
|
(properties `((upstream-name . "versions")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(home-page "https://cran.r-project.org/web/packages/versions/")
|
||||||
|
(synopsis "Query and install specific versions of CRAN packages")
|
||||||
|
(description
|
||||||
|
"This package allows you to install specified versions of R packages
|
||||||
|
hosted on CRAN and provides functions to list available versions and the
|
||||||
|
versions of currently installed packages.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
Loading…
Reference in a new issue