diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-03-15 14:28:38 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-03-15 22:14:43 +0100 |
commit | 766f8ea02ceaf35c571b705995b86de5f962c108 (patch) | |
tree | b3b776f8f82157cd53335ee9fd5a9cae8295a303 | |
parent | c0d132d4d1f2dbcaeb696f1a7ea18ff505ced209 (diff) | |
download | guix-766f8ea02ceaf35c571b705995b86de5f962c108.tar guix-766f8ea02ceaf35c571b705995b86de5f962c108.tar.gz |
gnu: r-styler: Update to 1.7.0.
* gnu/packages/cran.scm (r-styler): Update to 1.7.0.
[propagated-inputs]: Remove r-backports, r-glue, and r-xfun.
-rw-r--r-- | gnu/packages/cran.scm | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8eaba6d2c1..fcb9b93290 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19192,24 +19192,23 @@ batch correction, and data correction.") (define-public r-styler (package (name "r-styler") - (version "1.6.2") + (version "1.7.0") (source (origin (method url-fetch) (uri (cran-uri "styler" version)) (sha256 (base32 - "0p7p2mh4f469drfn5z4wc4xrg06mpnm9wkw76fghclf8m9vcqbx6")))) + "1ki260ga0jrmayhdlx2sl788yp5kkmi4wyl32nmvvyb55sng6j9y")))) (build-system r-build-system) + ;; This is needed by R.cache. (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'set-HOME (lambda _ (setenv "HOME" "/tmp")))))) (propagated-inputs - (list r-backports - r-cli - r-glue + (list r-cli r-magrittr r-purrr r-r-cache @@ -19217,8 +19216,7 @@ batch correction, and data correction.") r-rlang r-rprojroot r-tibble - r-withr - r-xfun)) + r-withr)) (native-inputs (list r-knitr)) (home-page "https://github.com/r-lib/styler") |