gnu: Add r-knitrbootstrap.

* gnu/packages/statistics.scm (r-knitrbootstrap): New variable.
This commit is contained in:
Ricardo Wurmus 2016-05-24 14:53:31 +02:00 committed by Ricardo Wurmus
parent b4528110c6
commit 4ce3c2872b
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -792,6 +792,29 @@ (define-public r-knitr
;; here.
(license license:gpl2+)))
(define-public r-knitrbootstrap
(package
(name "r-knitrbootstrap")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "knitrBootstrap" version))
(sha256
(base32
"0pshn2slzqwpryklslsxwh1dmqcnwv6bwi7yfm6m342wjybpk0wl"))))
(properties `((upstream-name . "knitrBootstrap")))
(build-system r-build-system)
(propagated-inputs
`(("r-knitr" ,r-knitr)
("r-rmarkdown" ,r-rmarkdown)))
(home-page "https://github.com/jimhester/knitrBootstrap")
(synopsis "Knitr bootstrap framework")
(description
"This package provides a framework to create Bootstrap 3 HTML reports
from knitr Rmarkdown.")
(license license:expat)))
(define-public r-microbenchmark
(package
(name "r-microbenchmark")