diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-06-23 13:40:58 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-06-23 13:43:12 +0200 |
commit | c261a7b39ab8f5d46299205e5421cb46aae5634e (patch) | |
tree | c8ba696c3fbca24eb087e5b5b09c502c5f8ff00d | |
parent | 380c3e459b6ebf0077008886954ff881a0cc7924 (diff) | |
download | guix-c261a7b39ab8f5d46299205e5421cb46aae5634e.tar.gz |
gnu: Add r-lsd.
* gnu/packages/cran.scm (r-lsd): New variable. Co-authored-by: Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index bd347827c8..ac246bd123 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -22210,3 +22210,23 @@ positioning methods that can be re-used across several different plots. There are heuristics for examining @code{trellis} and @code{ggplot} objects and inferring an appropriate positioning method.") (license license:gpl3))) + +(define-public r-lsd + (package + (name "r-lsd") + (version "4.1-0") + (source + (origin + (method url-fetch) + (uri (cran-uri "LSD" version)) + (sha256 + (base32 "17pbdlcbhzf3v7l42mjikln1ga5xjp5r78gjg6a88iahk0lwwlvm")))) + (properties `((upstream-name . "LSD"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/LSD/") + (synopsis "Lots of superior depictions tool creates colorful plots") + (description + "This package creates lots of colorful plots in a multitude of variations. +Try a demo of the LSD by running @code{demotour()}.") + ;; Either version + (license (list license:gpl2 license:gpl3)))) |