diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-12-15 12:17:11 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-12-15 16:13:14 +0100 |
commit | f2041fe211196b3ca1b3afae575a395305b3fea4 (patch) | |
tree | 19e833eb3eb03b80b38c63ec601c17759c802663 | |
parent | b21ed00b81fdef38bedabdf774e5580461137bd5 (diff) |
gnu: r-ggthemes: Update to 5.0.0.
* gnu/packages/statistics.scm (r-ggthemes): Update to 5.0.0.
[propagated-inputs]: Add r-lifecycle.
Change-Id: Ie190e236dd4bfc951725535774071eea60488ce8
-rw-r--r-- | gnu/packages/statistics.scm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 2b23726bad..dd338dd68b 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -5269,16 +5269,21 @@ data at that region, and avoids over-plotting.") (define-public r-ggthemes (package (name "r-ggthemes") - (version "4.2.4") + (version "5.0.0") (source (origin (method url-fetch) (uri (cran-uri "ggthemes" version)) (sha256 (base32 - "0rw5f6axyz1pqn6qx9jwm38hjzn8bqs1nfjkvm96z3xnyn61cdbv")))) + "1iddxlcxbj5pq0llbhjh5gvxq8j4kzby0cahy0sgzzca074i7aan")))) (build-system r-build-system) (propagated-inputs - (list r-ggplot2 r-purrr r-scales r-stringr r-tibble)) + (list r-ggplot2 + r-lifecycle + r-purrr + r-scales + r-stringr + r-tibble)) (home-page "https://cran.rstudio.com/web/packages/ggthemes") (synopsis "Extra themes, scales and geoms for @code{ggplot2}") (description "This package provides extra themes and scales for |