gnu: Add r-inum.

* gnu/packages/cran.scm (r-inum): New variable.
This commit is contained in:
Roel Janssen 2020-04-27 11:15:38 +02:00
parent 415176e89d
commit 91370829f4
No known key found for this signature in database
GPG key ID: CBD0CD5138C19AFC

View file

@ -2494,6 +2494,27 @@ (define-public r-inline
;; Any version of the LGPL.
(license license:lgpl3+)))
(define-public r-inum
(package
(name "r-inum")
(version "1.0-1")
(source (origin
(method url-fetch)
(uri (cran-uri "inum" version))
(sha256
(base32
"16d09391l65w557dkzhhx1aqn1ljamcmjj3yh42pwq037k0r8brw"))))
(build-system r-build-system)
(propagated-inputs
`(("r-libcoin" ,r-libcoin)))
(home-page "https://cran.r-project.org/web/packages/inum/")
(synopsis "Interval and enum-type representation of vectors")
(description
"This package provides an enum-type representation of vectors and
representation of intervals, including a method of coercing variables
in data frames.")
(license license:gpl2)))
(define-public r-bdsmatrix
(package
(name "r-bdsmatrix")