diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-01-20 17:08:39 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-01-20 17:19:01 +0100 |
commit | 0a8607f8734b71175d5580b1ca2429f344f1c5be (patch) | |
tree | c9be97f1e3f756d7c80f185effe3ae69b522b975 /gnu/packages/cran.scm | |
parent | 77d4e7c2ab629fa693f4267bb355684cdcc9745a (diff) | |
download | guix-0a8607f8734b71175d5580b1ca2429f344f1c5be.tar guix-0a8607f8734b71175d5580b1ca2429f344f1c5be.tar.gz |
gnu: r-ggridges: Update to 0.5.3.
* gnu/packages/cran.scm (r-ggridges): Update to 0.5.3.
[native-inputs]: Add r-knitr.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 3754292c47..46688251bd 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4541,20 +4541,22 @@ plotting. a three dimensional point cloud.") (define-public r-ggridges (package (name "r-ggridges") - (version "0.5.2") + (version "0.5.3") (source (origin (method url-fetch) (uri (cran-uri "ggridges" version)) (sha256 (base32 - "03pz257aw0mkh5k75rby9givkc1ky3n5scvhjhjiz9vry9fpffmh")))) + "0bmlqy1p6rac90af97ffpdi6php7dblx66l2hcm8ljidgyqzmspm")))) (build-system r-build-system) (propagated-inputs `(("r-ggplot2" ,r-ggplot2) ("r-plyr" ,r-plyr) ("r-scales" ,r-scales) ("r-withr" ,r-withr))) + (native-inputs + `(("r-knitr" ,r-knitr))) (home-page "https://github.com/clauswilke/ggridges") (synopsis "Ridgeline plots in ggplot2") (description |