mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-31 16:42:38 -05:00
gnu: Add r-gfonts.
* gnu/packages/cran.scm (r-gfonts): New variable.
This commit is contained in:
parent
2b9cb13796
commit
6a3144bd27
1 changed files with 28 additions and 0 deletions
|
@ -541,6 +541,34 @@ (define-public r-emdist
|
|||
Distance (EMD).")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-gfonts
|
||||
(package
|
||||
(name "r-gfonts")
|
||||
(version "0.2.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "gfonts" version))
|
||||
(sha256
|
||||
(base32
|
||||
"19ja087k767bq71v2w4jcpynd62ysrqmjf6rpfnmmd40aanyxqkj"))))
|
||||
(properties `((upstream-name . "gfonts")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
(list r-crayon
|
||||
r-crul
|
||||
r-glue
|
||||
r-htmltools
|
||||
r-jsonlite
|
||||
r-shiny))
|
||||
(native-inputs (list r-knitr))
|
||||
(home-page "https://dreamrs.github.io/gfonts/")
|
||||
(synopsis "Offline Google fonts for Markdown and Shiny")
|
||||
(description
|
||||
"This package lets you download Google fonts and generate CSS to use in
|
||||
rmarkdown documents and Shiny applications. Some popular fonts are included
|
||||
and ready to use.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public r-ggalt
|
||||
(package
|
||||
(name "r-ggalt")
|
||||
|
|
Loading…
Reference in a new issue