diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-07 22:05:03 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-07 23:52:35 +0100 |
commit | 3f22a115bd792af0ce8cee9f0723c5f5fada0b2d (patch) | |
tree | f3581daf89396a23ea35849c51d000ec34b6c611 /gnu | |
parent | d748cb5f473960141f49dad06bfc98d6c46ee326 (diff) | |
download | guix-3f22a115bd792af0ce8cee9f0723c5f5fada0b2d.tar.gz |
gnu: Add r-ellipsis.
* gnu/packages/cran.scm (r-ellipsis): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index cc23c53f4c..cb7689ecdb 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -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") |