diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-11-10 16:20:25 +0100 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-11-16 11:09:49 +0100 |
commit | 13d083af59143cb458851a6944552acb60c1267c (patch) | |
tree | 521e85cb2229ec3eaf912d07d5f600f530fb1e31 | |
parent | 1a77eccd0e4f95a4e2517c0f6c3e33ade3ff089b (diff) | |
download | guix-13d083af59143cb458851a6944552acb60c1267c.tar.gz guix-13d083af59143cb458851a6944552acb60c1267c.zip |
gnu: Add r-brew.
* gnu/packages/statistics.scm (r-brew): New variable.
-rw-r--r-- | gnu/packages/statistics.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index a5be5d96af..5ab13d1e71 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1119,3 +1119,22 @@ previous R versions and their release dates.") "This package provides logicless templating, with a syntax that is not limited to R.") (license license:gpl3+))) + +(define-public r-brew + (package + (name "r-brew") + (version "1.0-6") + (source (origin + (method url-fetch) + (uri (cran-uri "brew" version)) + (sha256 + (base32 + "1vghazbcha8gvkwwcdagjvzx6yl8zm7kgr0i9wxr4jng06d1l3fp")))) + (build-system r-build-system) + (home-page "http://cran.r-project.org/web/packages/brew") + (synopsis "Templating framework for report generation") + (description + "The brew package implements a templating framework for mixing text and R +code for report generation. The template syntax is similar to PHP, Ruby's erb +module, Java Server Pages, and Python's psp module.") + (license license:gpl2+))) |