Archived
1
0
Fork 0

gnu: Add r-versions.

* gnu/packages/cran.scm (r-versions): New variable.
This commit is contained in:
Ricardo Wurmus 2020-01-01 12:58:14 +01:00
parent 1a1ba08758
commit a581caa00d
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -19120,3 +19120,24 @@ can look for already created artifacts by using its class, name, date of the
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)))