mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add r-htmltable.
* gnu/packages/web.scm (r-htmltable): New variable.
This commit is contained in:
parent
b81245ccb3
commit
ac3265abad
1 changed files with 29 additions and 0 deletions
|
@ -3309,6 +3309,35 @@ (define-public r-htmlwidgets
|
|||
applications.")
|
||||
(license l:expat)))
|
||||
|
||||
(define-public r-htmltable
|
||||
(package
|
||||
(name "r-htmltable")
|
||||
(version "1.7")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "htmlTable" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0x2f2hrbhvm53zqwn0ny9wxbk34nwf6zww8cx4bjy5ax15asdllm"))))
|
||||
(properties `((upstream-name . "htmlTable")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-knitr" ,r-knitr)
|
||||
("r-magrittr" ,r-magrittr)
|
||||
("r-stringr" ,r-stringr)))
|
||||
(home-page "http://gforge.se/packages/")
|
||||
(synopsis "Advanced tables for Markdown/HTML")
|
||||
(description
|
||||
"This package provides functions to build tables with advanced layout
|
||||
elements such as row spanners, column spanners, table spanners, zebra
|
||||
striping, and more. While allowing advanced layout, the underlying
|
||||
CSS-structure is simple in order to maximize compatibility with word
|
||||
processors such as LibreOffice. The package also contains a few text
|
||||
formatting functions that help outputting text compatible with HTML or
|
||||
LaTeX.")
|
||||
(license l:gpl3+)))
|
||||
|
||||
(define-public r-curl
|
||||
(package
|
||||
(name "r-curl")
|
||||
|
|
Loading…
Reference in a new issue