>From 873d609cb823422c4658c3070ef727911ff45a85 Mon Sep 17 00:00:00 2001 From: Naga Malleswari Date: Sat, 14 Mar 2020 21:46:26 +0530 Subject: [PATCH] gnu: r-crochet: New variable. * gnu/packages/cran.scm (r-crochet): Added a New Package Description. --- gnu/packages/cran.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 406ccc644b..b51862a3ab 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -20794,3 +20794,24 @@ statistics and p-values of the correlation coefficients.") scales and utilities, including a spell check function for plot label fields and an overall emphasis on typography.") (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 '[' and '[<-' of Custom Matrix-Like Types") + (description + "Functions to help implement the extraction / subsetting / +indexing function '[' and replacement function '[<-' 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))) -- 2.20.1