From 3703ffb41f979e1e56352cec5cf905840b4e4996 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 23 Dec 2015 17:29:28 +0100 Subject: gnu: Add R.rsp. * gnu/packages/statistics.scm (r-r-rsp): New variable. --- gnu/packages/statistics.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'gnu/packages/statistics.scm') diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 96253595fd..bc1bf63154 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1832,3 +1832,34 @@ (define-public r-r-cache persistent (on the file system).") (license license:lgpl2.1+))) +(define-public r-r-rsp + (package + (name "r-r-rsp") + (version "0.20.0") + (source (origin + (method url-fetch) + (uri (cran-uri "R.rsp" version)) + (sha256 + (base32 + "06vq9qq5hdz3hqc99q82622mab6ix7jwap20h4za6ap6gnwqs0fv")))) + (properties `((upstream-name . "R.rsp"))) + (build-system r-build-system) + (propagated-inputs + `(("r-r-cache" ,r-r-cache) + ("r-r-methodss3" ,r-r-methodss3) + ("r-r-oo" ,r-r-oo) + ("r-r-utils" ,r-r-utils))) + (home-page "https://github.com/HenrikBengtsson/R.rsp") + (synopsis "Dynamic generation of scientific reports") + (description + "The RSP markup language provides a powerful markup for controlling the +content and output of LaTeX, HTML, Markdown, AsciiDoc, Sweave and knitr +documents (and more), e.g. @code{Today's date is <%=Sys.Date()%>}. Contrary +to many other literate programming languages, with RSP it is straightforward +to loop over mixtures of code and text sections, e.g. in month-by-month +summaries. RSP has also several preprocessing directives for incorporating +static and dynamic contents of external files (local or online) among other +things. RSP is ideal for self-contained scientific reports and R package +vignettes.") + (license license:lgpl2.1+))) + -- cgit v1.2.3