gnu: Add r-ellipsis.

* gnu/packages/cran.scm (r-ellipsis): New variable.
master
Ricardo Wurmus 2019-03-07 22:05:03 +01:00
parent d748cb5f47
commit 3f22a115bd
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 22 additions and 0 deletions

View File

@ -84,6 +84,28 @@
the system clipboards.")
(license license:gpl3)))
(define-public r-ellipsis
(package
(name "r-ellipsis")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "ellipsis" version))
(sha256
(base32
"0pw94qpg81xmsdsagpqxddv7m2cmdszmyyq99dk3caqqj01z7wg6"))))
(build-system r-build-system)
(home-page "https://github.com/hadley/ellipsis")
(synopsis "Tools for working with additional arguments")
(description
"In S3 generics, it's useful to take @code{...} so that methods can have
additional arguments. But this flexibility comes at a cost: misspelled
arguments will be silently ignored. The @code{ellipsis} package is an
experiment that allows a generic to warn if any arguments passed in @code{...}
are not used.")
(license license:gpl3)))
(define-public r-sys
(package
(name "r-sys")