mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: Add r-htmltools.
* gnu/packages/web.scm (r-htmltools): New variable.
This commit is contained in:
parent
dedaf7ac74
commit
f1a045e266
1 changed files with 19 additions and 0 deletions
|
@ -2935,3 +2935,22 @@ (define-public r-servr
|
|||
documents that can be converted to HTML files (e.g., R Markdown) under a given
|
||||
directory.")
|
||||
(license l:expat)))
|
||||
|
||||
(define-public r-htmltools
|
||||
(package
|
||||
(name "r-htmltools")
|
||||
(version "0.2.6")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "htmltools" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1gp6f6388xy3cvnb08q08vraidjp740gfxlafdd19m2s04v5hncz"))))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-digest" ,r-digest)))
|
||||
(home-page "http://cran.r-project.org/web/packages/htmltools")
|
||||
(synopsis "R tools for HTML")
|
||||
(description
|
||||
"This package provides tools for HTML generation and output in R.")
|
||||
(license l:expat)))
|
||||
|
|
Loading…
Reference in a new issue