diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-07-04 13:18:29 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-07-04 13:48:57 +0200 |
commit | 9c58c87aa9b7c1e1fa0102889aa461969ee3c30b (patch) | |
tree | 47732ce506d7219b279822092d852f0945712d73 | |
parent | 738e4eea14420a848c346daa29263419ac842671 (diff) | |
download | guix-9c58c87aa9b7c1e1fa0102889aa461969ee3c30b.tar.gz |
gnu: Add r-prismatic.
* gnu/packages/cran.scm (r-prismatic): New variable.
-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 02aa63af56..b31d155fa4 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4329,6 +4329,26 @@ quantities.") curve to a data matrix in arbitrary dimensions.") (license license:gpl2))) +(define-public r-prismatic + (package + (name "r-prismatic") + (version "1.1.0") + (source (origin + (method url-fetch) + (uri (cran-uri "prismatic" version)) + (sha256 + (base32 + "1f6k11hcll33g2wbadjhm91pm5h4khg4zd8g9fzs3m9xlqpfaywh")))) + (properties `((upstream-name . "prismatic"))) + (build-system r-build-system) + (propagated-inputs (list r-farver)) + (home-page "https://github.com/EmilHvitfeldt/prismatic") + (synopsis "Color manipulation tools") + (description + "Manipulate and visualize colors in a intuitive, low-dependency and functional +way.") + (license license:expat))) + (define-public r-reshape (package (name "r-reshape") |