rekado pushed a commit to branch master
in repository guix.
commit ac5dbcfd496cd351a80d54c2c5afe8687bc3ce30
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Thu Jun 11 15:04:46 2020 +0200
gnu: r-ggally: Update to 2.0.0.
* gnu/packages/cran.scm (r-ggally): Update to 2.0.0.
[propagated-inputs]: Add r-lifecycle and r-scales.
---
gnu/packages/cran.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index f0a8e2c..6d04f4b 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -2257,14 +2257,14 @@ package also provides a C++ API, that works with or
without Rcpp.")
(define-public r-ggally
(package
(name "r-ggally")
- (version "1.5.0")
+ (version "2.0.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "GGally" version))
(sha256
(base32
- "082s321zspg5al6acigwrhg4fsrmkkk5caabg662qbcy8v6n34h6"))))
+ "1gkmpzh1yvwvypkw0nwqv3gsf6za3220wig3rfv8g23kss60rl1s"))))
(properties `((upstream-name . "GGally")))
(build-system r-build-system)
(inputs
@@ -2272,11 +2272,13 @@ package also provides a C++ API, that works with or
without Rcpp.")
(propagated-inputs
`(("r-ggplot2" ,r-ggplot2)
("r-gtable" ,r-gtable)
+ ("r-lifecycle" ,r-lifecycle)
("r-plyr" ,r-plyr)
("r-progress" ,r-progress)
("r-rcolorbrewer" ,r-rcolorbrewer)
("r-reshape" ,r-reshape)
- ("r-rlang" ,r-rlang)))
+ ("r-rlang" ,r-rlang)
+ ("r-scales" ,r-scales)))
(home-page "https://ggobi.github.io/ggally")
(synopsis "Extension to ggplot2")
(description