gnu: Add r-pander.

* gnu/packages/cran.scm (r-pander): New variable.
This commit is contained in:
Ricardo Wurmus 2018-10-28 19:22:38 +01:00
parent 9b02d1a11e
commit 319a80ce96
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 26 additions and 0 deletions

View File

@ -6934,3 +6934,29 @@ of the individual checks.")
advanced statistical methods with the advantage of having sane defaults for advanced statistical methods with the advantage of having sane defaults for
quick reporting.") quick reporting.")
(license license:agpl3+))) (license license:agpl3+)))
(define-public r-pander
(package
(name "r-pander")
(version "0.6.2")
(source
(origin
(method url-fetch)
(uri (cran-uri "pander" version))
(sha256
(base32
"0gd7rqkpbraznip8jmri9lqa8ajg1sryyplhd6m633wg91whiipi"))))
(build-system r-build-system)
(propagated-inputs
`(("r-digest" ,r-digest)
("r-rcpp" ,r-rcpp)))
(home-page "https://rapporter.github.io/pander")
(synopsis "Render R objects into Pandoc's markdown")
(description
"The main aim of the pander R package is to provide a minimal and easy
tool for rendering R objects into Pandoc's markdown. The package is also
capable of exporting/converting complex Pandoc documents (reports) in various
ways.")
;; This package is licensed under either the AGPLv3+ or the very rarely
;; used OSL 3.0.
(license license:agpl3+)))