rekado pushed a commit to branch master
in repository guix.
commit 9da706f7144297f426a49631a1b829ac40d8582b
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Wed Jan 20 17:08:12 2021 +0100
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.
---
gnu/packages/cran.scm | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index cefb179..840f975 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