mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add r-measurements.
* gnu/packages/cran.scm (r-measurements): New variable.
This commit is contained in:
parent
c359153ac4
commit
5ae0d8a9d0
1 changed files with 20 additions and 0 deletions
|
@ -33624,3 +33624,23 @@ (define-public r-cartogram
|
||||||
(description "This package enables construction of continuous and
|
(description "This package enables construction of continuous and
|
||||||
non-contiguous area cartograms.")
|
non-contiguous area cartograms.")
|
||||||
(license license:gpl3)))
|
(license license:gpl3)))
|
||||||
|
|
||||||
|
(define-public r-measurements
|
||||||
|
(package
|
||||||
|
(name "r-measurements")
|
||||||
|
(version "1.4.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "measurements" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1kihavs9vgxwqjm9z1zjjngkmcwfsv8dg7nn9nrv5r06k5hv8bz6"))))
|
||||||
|
(properties `((upstream-name . "measurements")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(home-page "https://cran.r-project.org/web/packages/measurements/")
|
||||||
|
(synopsis "Tools for units of measurement")
|
||||||
|
(description
|
||||||
|
"This package provides a collection of tools to make working with physical
|
||||||
|
measurements easier. One can convert between metric and imperial units, or
|
||||||
|
calculate a dimension's unknown value from other dimensions' measurements.")
|
||||||
|
(license license:gpl3)))
|
||||||
|
|
Loading…
Reference in a new issue