mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-10 13:19:40 -05:00
gnu: Add r-highlight.
* gnu/packages/cran.scm (r-highlight): New variable.
This commit is contained in:
parent
eb21f330b9
commit
c35364ea03
1 changed files with 22 additions and 0 deletions
|
@ -26559,3 +26559,25 @@ (define-public r-vdiffr
|
|||
to add graphical unit tests. It provides a Shiny application to manage the
|
||||
test cases.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public r-highlight
|
||||
(package
|
||||
(name "r-highlight")
|
||||
(version "0.5.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "highlight" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1shar4y07wyixg0ichdrn2xhgwkl3mv2pxkalqzisc69w605b3hf"))))
|
||||
(properties `((upstream-name . "highlight")))
|
||||
(build-system r-build-system)
|
||||
(home-page "https://github.com/hadley/highlight")
|
||||
(synopsis "Syntax highlighter for R code")
|
||||
(description
|
||||
"This package provides a syntax highlighter for R code based on the
|
||||
results of the R parser. It supports rendering in HTML and LaTeX markup. It
|
||||
includes a custom Sweave driver performing syntax highlighting of R code
|
||||
chunks.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue