guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: Add r-svglite.


From: Ben Woodcroft
Subject: 02/03: gnu: Add r-svglite.
Date: Wed, 6 Jul 2016 07:18:04 +0000 (UTC)

benwoodcroft pushed a commit to branch master
in repository guix.

commit 3aebedcc021faf72f7a002ce29a4de427366304b
Author: Ben Woodcroft <address@hidden>
Date:   Tue Jul 5 20:50:27 2016 +0800

    gnu: Add r-svglite.
    
    * gnu/packages/statistics.scm (r-svglite): New variable.
---
 gnu/packages/statistics.scm |   25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 24fbabe..d2f3bb0 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -634,6 +634,31 @@ aesthetic attributes.")
 and to generate base64 encoded string from raster matrix.")
     (license license:gpl3)))
 
+(define-public r-svglite
+  (package
+    (name "r-svglite")
+    (version "1.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "svglite" version))
+       (sha256
+        (base32
+         "11ryicjglfi6jvkk4jgg5kra42qbs5z2zid7jjhlslpjcljfwc70"))))
+    (build-system r-build-system)
+    (native-inputs  `(("r-rcpp" ,r-rcpp)))
+    (propagated-inputs
+     `(("r-bh" ,r-bh)
+       ("r-gdtools" ,r-gdtools)))
+    (home-page "https://github.com/hadley/svglite";)
+    (synopsis "SVG graphics device")
+    (description
+     "@code{svglite} is a graphics device that produces clean
address@hidden (Scalable Vector Graphics) output, suitable for use on the web, 
or
+hand editing.  Compared to the built-in @code{svg()}, @code{svglite} is
+considerably faster, produces smaller files, and leaves text as is.")
+    (license license:gpl2+)))
+
 (define-public r-assertthat
   (package
     (name "r-assertthat")



reply via email to

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