diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-01-20 17:08:12 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-01-20 17:19:00 +0100 |
commit | 9da706f7144297f426a49631a1b829ac40d8582b (patch) | |
tree | 0dfe900f9a0ac9bea28555786cf972c905481d3e /gnu/packages/cran.scm | |
parent | 4a3fed7c6f5769f718072b0839e867f692ad310c (diff) |
gnu: r-ggally: Update to 2.1.0.
* gnu/packages/cran.scm (r-ggally): Update to 2.1.0.
[inputs]: Remove libressl; add openssl.
[propagated-inputs]: Add r-dplyr, r-forcats, and r-tidyr.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index cefb179c5c..840f97581c 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -2772,20 +2772,22 @@ package also provides a C++ API, that works with or without Rcpp.") (define-public r-ggally (package (name "r-ggally") - (version "2.0.0") + (version "2.1.0") (source (origin (method url-fetch) (uri (cran-uri "GGally" version)) (sha256 (base32 - "1gkmpzh1yvwvypkw0nwqv3gsf6za3220wig3rfv8g23kss60rl1s")))) + "0lvcvlc8p2cii7rqx7m81f7cv3kk9mlf7cbbgv7l75g7ljw8dyvz")))) (properties `((upstream-name . "GGally"))) (build-system r-build-system) (inputs - `(("libressl" ,libressl))) + `(("openssl" ,openssl))) (propagated-inputs - `(("r-ggplot2" ,r-ggplot2) + `(("r-dplyr" ,r-dplyr) + ("r-forcats" ,r-forcats) + ("r-ggplot2" ,r-ggplot2) ("r-gtable" ,r-gtable) ("r-lifecycle" ,r-lifecycle) ("r-plyr" ,r-plyr) @@ -2793,7 +2795,8 @@ package also provides a C++ API, that works with or without Rcpp.") ("r-rcolorbrewer" ,r-rcolorbrewer) ("r-reshape" ,r-reshape) ("r-rlang" ,r-rlang) - ("r-scales" ,r-scales))) + ("r-scales" ,r-scales) + ("r-tidyr" ,r-tidyr))) (home-page "https://ggobi.github.io/ggally") (synopsis "Extension to ggplot2") (description |