guix-commits
[Top][All Lists]
Advanced

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

07/296: gnu: Add r-dot.


From: guix-commits
Subject: 07/296: gnu: Add r-dot.
Date: Fri, 12 Jun 2020 19:29:22 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 67a289e5bd44fce3950a00be2a4b66720e6f8b79
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri Jun 12 23:53:10 2020 +0200

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 6ebb424..300c468 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -150,6 +150,30 @@ degree elevation and curve fitting.")
 WebAssembly engine.")
     (license license:expat)))
 
+(define-public r-dot
+  (package
+    (name "r-dot")
+    (version "0.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "DOT" version))
+       (sha256
+        (base32
+         "0qh5n57cp9c2n5yn59q4wggz82943pwfanp3kx869aba2x3sj30i"))))
+    (properties `((upstream-name . "DOT")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-v8" ,r-v8)))
+    (home-page "http://haghish.com/dot";)
+    (synopsis "Render and Export DOT Graphs in R")
+    (description
+     "This package provides tools to render DOT diagram markup language in R
+and also provides the possibility to export the graphs in PostScript and
+SVG (Scalable Vector Graphics) formats.  In addition, it supports literate
+programming packages such as @code{knitr} and @code{rmarkdown}.")
+    (license license:expat)))
+
 (define-public r-clipr
   (package
     (name "r-clipr")



reply via email to

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