guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/96: gnu: Add r-highlight.


From: guix-commits
Subject: 02/96: gnu: Add r-highlight.
Date: Wed, 10 Feb 2021 19:06:20 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit c35364ea0331280e412719518e9c27e9940bedba
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Feb 10 21:38:23 2021 +0100

    gnu: Add r-highlight.
    
    * gnu/packages/cran.scm (r-highlight): New variable.
---
 gnu/packages/cran.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 20ed1e4..fa99106 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -26559,3 +26559,25 @@ unit tests of graphics).")
 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+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]