gnu: Add r-collections.
* gnu/packages/cran.scm (r-collections): New variable.
This commit is contained in:
parent
3fb78caa55
commit
fac2e1a110
1 changed files with 19 additions and 0 deletions
|
@ -156,6 +156,25 @@ can limit either their total size or the age of the oldest object (or both),
|
||||||
automatically pruning objects to maintain the constraints.")
|
automatically pruning objects to maintain the constraints.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public r-collections
|
||||||
|
(package
|
||||||
|
(name "r-collections")
|
||||||
|
(version "0.3.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "collections" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "053ig88pva78wxxwya3v7cz853k563dkpgxrf2xvd0l0d9fanxmz"))))
|
||||||
|
(properties `((upstream-name . "collections")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(home-page "https://github.com/randy3k/collections")
|
||||||
|
(synopsis "High performance container data types")
|
||||||
|
(description
|
||||||
|
"This package provides high performance container data types such as
|
||||||
|
queues, stacks, deques, dicts and ordered dicts.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public r-curry
|
(define-public r-curry
|
||||||
(package
|
(package
|
||||||
(name "r-curry")
|
(name "r-curry")
|
||||||
|
|
Reference in a new issue