guix-commits
[Top][All Lists]
Advanced

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

04/20: gnu: Add r-xkcd.


From: guix-commits
Subject: 04/20: gnu: Add r-xkcd.
Date: Wed, 27 Mar 2019 11:17:29 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 2d704608924baf2a206c997e462ae07c516e4391
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Mar 27 15:20:42 2019 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 00b6734..29af7ff 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -13043,3 +13043,26 @@ fonts in PDF (or Postscript) output files:
 
 The extrafont package makes both of these things easier.")
     (license license:gpl2)))
+
+(define-public r-xkcd
+  (package
+    (name "r-xkcd")
+    (version "0.0.6")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "xkcd" version))
+       (sha256
+        (base32
+         "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-extrafont" ,r-extrafont)
+       ("r-ggplot2" ,r-ggplot2)
+       ("r-hmisc" ,r-hmisc)))
+    (home-page "https://cran.r-project.org/web/packages/xkcd/";)
+    (synopsis "Plot ggplot2 graphics in the XKCD style")
+    (description
+     "This package provides the means to plot ggplot2 graphs in the style of
+the XKCD web comic.")
+    (license license:gpl3)))



reply via email to

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