diff options
author | Vicente Vera Parra <vicentemvp@gmail.com> | 2015-09-15 14:15:55 -0300 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-09-21 10:48:26 +0200 |
commit | 256ccc926c31dbb5bb1a70af30a5403e91b132e3 (patch) | |
tree | c4a8177cf090d82d3bf865253076112854ef86f7 /gnu/packages/statistics.scm | |
parent | 675c9f447b264967ae9a9249e8281943f350cbc5 (diff) | |
download | guix-256ccc926c31dbb5bb1a70af30a5403e91b132e3.tar guix-256ccc926c31dbb5bb1a70af30a5403e91b132e3.tar.gz |
gnu: Add r-evaluate.
* gnu/packages/statistics.scm (r-evaluate): New variable.
Diffstat (limited to 'gnu/packages/statistics.scm')
-rw-r--r-- | gnu/packages/statistics.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 911dc3de1e..9acc20b5eb 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -558,3 +558,25 @@ R/DBMS implementations.") "This package aims to provide the most useful subset of Boost libraries for template use among CRAN packages.") (license license:boost1.0))) + +(define-public r-evaluate + (package + (name "r-evaluate") + (version "0.8") + (source (origin + (method url-fetch) + (uri (cran-uri "evaluate" version)) + (sha256 + (base32 + "137gc35jlizhqnx19mxim3llrkm403abj8ghb2b7v5ls9rvd40pq")))) + (build-system r-build-system) + (propagated-inputs + `(("r-stringr" ,r-stringr))) + (home-page "https://github.com/hadley/evaluate") + (synopsis "Parsing and evaluation tools for R") + (description + "This package provides tools that allow you to recreate the parsing, +evaluation and display of R code, with enough information that you can +accurately recreate what happens at the command line. The tools can easily be +adapted for other output formats, such as HTML or LaTeX.") + (license license:gpl3+))) |