gnu: r-ggally: Update to 1.4.0.
* gnu/packages/cran.scm (r-ggally): Update to 1.4.0. [inputs]: Add libressl. [propagated-inputs]: Add r-rlang.
This commit is contained in:
parent
13079c143b
commit
9944399ae3
|
@ -38,6 +38,7 @@
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages statistics)
|
#:use-module (gnu packages statistics)
|
||||||
|
#:use-module (gnu packages tls)
|
||||||
#:use-module (gnu packages web))
|
#:use-module (gnu packages web))
|
||||||
|
|
||||||
(define-public r-tidyverse
|
(define-public r-tidyverse
|
||||||
|
@ -844,23 +845,26 @@ package also provides a C++ API, that works with or without Rcpp.")
|
||||||
(define-public r-ggally
|
(define-public r-ggally
|
||||||
(package
|
(package
|
||||||
(name "r-ggally")
|
(name "r-ggally")
|
||||||
(version "1.3.2")
|
(version "1.4.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (cran-uri "GGally" version))
|
(uri (cran-uri "GGally" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"02px7j28wzbhcgcwm2m0pxb6g7s5zvphl64ix55pkvag4m2ky57l"))))
|
"1zjmcc5bzagvy7c5cmdcl39xmx07fwi98yrj4i05w7y40kqcsiws"))))
|
||||||
(properties `((upstream-name . "GGally")))
|
(properties `((upstream-name . "GGally")))
|
||||||
(build-system r-build-system)
|
(build-system r-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("libressl" ,libressl)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("r-ggplot2" ,r-ggplot2)
|
`(("r-ggplot2" ,r-ggplot2)
|
||||||
("r-gtable" ,r-gtable)
|
("r-gtable" ,r-gtable)
|
||||||
("r-plyr" ,r-plyr)
|
("r-plyr" ,r-plyr)
|
||||||
("r-progress" ,r-progress)
|
("r-progress" ,r-progress)
|
||||||
("r-rcolorbrewer" ,r-rcolorbrewer)
|
("r-rcolorbrewer" ,r-rcolorbrewer)
|
||||||
("r-reshape" ,r-reshape)))
|
("r-reshape" ,r-reshape)
|
||||||
|
("r-rlang" ,r-rlang)))
|
||||||
(home-page "https://ggobi.github.io/ggally")
|
(home-page "https://ggobi.github.io/ggally")
|
||||||
(synopsis "Extension to ggplot2")
|
(synopsis "Extension to ggplot2")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue