mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add r-zeallot.
* gnu/packages/cran.scm (r-zeallot): New variable.
This commit is contained in:
parent
154c2b0bc5
commit
c87a335860
1 changed files with 21 additions and 0 deletions
|
@ -3653,6 +3653,27 @@ international text (Unicode). Input, validate, normalize, encode, format, and
|
|||
display.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public r-zeallot
|
||||
(package
|
||||
(name "r-zeallot")
|
||||
(version "0.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "zeallot" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
|
||||
(build-system r-build-system)
|
||||
(home-page "https://github.com/nteetor/zeallot")
|
||||
(synopsis "Multiple, unpacking, and destructuring assignment")
|
||||
(description
|
||||
"This package provides a @code{%<-%} operator to perform multiple,
|
||||
unpacking, and destructuring assignment in R. The operator unpacks the
|
||||
right-hand side of an assignment into multiple values and assigns these values
|
||||
to variables on the left-hand side of the assignment.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-pillar
|
||||
(package
|
||||
(name "r-pillar")
|
||||
|
|
Loading…
Reference in a new issue