mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add r-hash.
* gnu/packages/cran.scm (r-hash): New variable.
This commit is contained in:
parent
3d4908a77b
commit
4646d18eb7
1 changed files with 21 additions and 0 deletions
|
@ -4615,3 +4615,24 @@ (define-public r-argparse
|
|||
write shebang scripts that gracefully accept positional and optional arguments
|
||||
and automatically generate usage notices.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-hash
|
||||
(package
|
||||
(name "r-hash")
|
||||
(version "2.2.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "hash" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0mkx59bmni3b283znvbndnkbar85fzavzdfgmwrhskidsqcz34yz"))))
|
||||
(build-system r-build-system)
|
||||
(home-page "https://cran.r-project.org/web/packages/hash/")
|
||||
(synopsis "Implementation of hash/associated arrays/dictionaries")
|
||||
(description
|
||||
"This package implements a data structure similar to hashes in Perl and
|
||||
dictionaries in Python but with a purposefully R flavor. For objects of
|
||||
appreciable size, access using hashes outperforms native named lists and
|
||||
vectors.")
|
||||
(license license:gpl2+)))
|
||||
|
|
Loading…
Reference in a new issue