diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-08-02 15:53:33 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-08-03 17:53:42 +0200 |
commit | eed58a0886433195fd610fc2b7d19c11c11c4ca1 (patch) | |
tree | 33c3ebc209b48af56fe6e2927abd7f4ec22aeb6f /gnu/packages | |
parent | a8cba9dd112528d67a946eee057c838221eb5249 (diff) | |
download | guix-eed58a0886433195fd610fc2b7d19c11c11c4ca1.tar guix-eed58a0886433195fd610fc2b7d19c11c11c4ca1.tar.gz |
gnu: Add r-bindr.
* gnu/packages/cran.scm (r-bindr): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cran.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 863c872d14..c0f34f1375 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -106,3 +106,22 @@ about Rcpp is provided by several vignettes included in this package, via the and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see 'citation(\"Rcpp\")' for details on these last two.") (license license:gpl2+))) + +(define-public r-bindr + (package + (name "r-bindr") + (version "0.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "bindr" version)) + (sha256 + (base32 + "0d95ifm0x4mrfzi20xf39f5pzd7rfzqsld0vjqf6xzga5rhnd8fc")))) + (build-system r-build-system) + (home-page "https://github.com/krlmlr/bindr") + (synopsis "Parametrized active bindings") + (description + "This package provides a simple interface for creating active bindings +where the bound function accepts additional arguments.") + (license license:expat))) |