diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-11-29 15:22:03 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-11-29 15:27:21 +0100 |
commit | 0b9c3e6f1af660791b403918df9f05cc0d74256f (patch) | |
tree | ba109031d39aecd89504bcb2de581c6327b191dd /gnu | |
parent | b7e437f1ba74d185a5c11c22808ee403472a6fe1 (diff) | |
download | guix-0b9c3e6f1af660791b403918df9f05cc0d74256f.tar.gz |
gnu: r-ggmap: Update to 3.0.1.
* gnu/packages/cran.scm (r-ggmap): Update to 3.0.1. [propagated-inputs]: Remove r-rjson; add r-cli and r-rlang.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 4e2792a400..4303b494ad 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4070,17 +4070,18 @@ files and in-memory raw vectors.") (define-public r-ggmap (package (name "r-ggmap") - (version "3.0.0") + (version "3.0.1") (source (origin (method url-fetch) (uri (cran-uri "ggmap" version)) (sha256 (base32 - "13dmzl6z62pzjiffilarkji46vy0sacxa8a7mhrhc3biq3ylzhln")))) + "0pg38zyxv1j6mwdwdqljynqrg7zjwqpsh65xdwmvbl0zgxa4p0pw")))) (build-system r-build-system) (propagated-inputs (list r-bitops + r-cli r-digest r-dplyr r-ggplot2 @@ -4092,7 +4093,7 @@ files and in-memory raw vectors.") r-png r-purrr r-rgooglemaps - r-rjson + r-rlang r-scales r-stringr r-tibble |