diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-03-19 14:44:24 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-03-19 16:11:54 +0100 |
commit | ea825b9dc6fb51903b0812db8ff5c289d50b4847 (patch) | |
tree | 58168b8d2568d19683a9faded06a7de7aeb89a4c | |
parent | 88e8116f1e90edbfec3826296aae70c0def4ea9b (diff) | |
download | guix-ea825b9dc6fb51903b0812db8ff5c289d50b4847.tar guix-ea825b9dc6fb51903b0812db8ff5c289d50b4847.tar.gz |
gnu: r-ggsci: Update to 3.0.0.
* gnu/packages/cran.scm (r-ggsci): Update to 3.0.0.
[native-inputs]: Add r-knitr.
-rw-r--r-- | gnu/packages/cran.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 02cdce9bd6..f491613725 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -11361,17 +11361,18 @@ Sequence logos can easily be combined with other ggplot2 plots.") (define-public r-ggsci (package (name "r-ggsci") - (version "2.9") + (version "3.0.0") (source (origin (method url-fetch) (uri (cran-uri "ggsci" version)) (sha256 (base32 - "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa")))) + "0ag1cj4ycl5xmll8mqmmikyvq94l8yx96pb8m2i853yp2rjk20c9")))) (build-system r-build-system) (propagated-inputs (list r-ggplot2 r-scales)) + (native-inputs (list r-knitr)) (home-page "https://nanx.me/ggsci/") (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2") (description |