mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 15:26:47 +01:00
gnu: Add r-crochet.
* gnu/packages/cran.scm (r-crochet): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
bbeb710de7
commit
1163dacd4b
1 changed files with 21 additions and 0 deletions
|
@ -20802,3 +20802,24 @@ (define-public r-hrbrthemes
|
||||||
scales and utilities, including a spell check function for plot label fields
|
scales and utilities, including a spell check function for plot label fields
|
||||||
and an overall emphasis on typography.")
|
and an overall emphasis on typography.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public r-crochet
|
||||||
|
(package
|
||||||
|
(name "r-crochet")
|
||||||
|
(version "2.2.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "crochet" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1cbv79nyycxk6f8ldcsnn2pvgxqlnrj0qs19nhafnq2clxy863k6"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(home-page "https://github.com/agrueneberg/crochet")
|
||||||
|
(synopsis "Implementation Helper for Matrix-Like Types")
|
||||||
|
(description
|
||||||
|
"Functions to help implement the extraction / subsetting / indexing
|
||||||
|
function @code{[} and replacement function @code{[<-} of custom matrix-like
|
||||||
|
types (based on S3, S4, etc.), modeled as closely to the base matrix class
|
||||||
|
as possible (with tests to prove it).")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue