diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-03-19 14:44:25 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-03-19 16:11:55 +0100 |
commit | 8431c3144c20309b71d3adb663d36da58d5cb171 (patch) | |
tree | 6a14a7f4c7a7897cdd2af9067041532c8474a23d | |
parent | 714be060dc40639e2f1b09d95508363e47dafbd9 (diff) | |
download | guix-8431c3144c20309b71d3adb663d36da58d5cb171.tar guix-8431c3144c20309b71d3adb663d36da58d5cb171.tar.gz |
gnu: r-golem: Update to 0.4.0.
* gnu/packages/cran.scm (r-golem): Update to 0.4.0.
[propagated-inputs]: Remove r-cli, r-crayon, r-desc, r-fs, r-pkgload, r-roxygen2,
r-rstudioapi, and r-usethis; add r-rlang.
-rw-r--r-- | gnu/packages/cran.scm | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index f681f4c6b6..d4e5707b77 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -12326,29 +12326,22 @@ distribution).") (define-public r-golem (package (name "r-golem") - (version "0.3.5") + (version "0.4.0") (source (origin (method url-fetch) (uri (cran-uri "golem" version)) (sha256 (base32 - "0rjkl1r83h0hcn30zssx64qm07sdx3g4v5rdxn56gbzfghw7ddcl")))) + "0qjnrkwyn8im5zfd0fxf7rkz0gxdywnckpzsn0cqb0fxsa0z0xmv")))) (properties `((upstream-name . "golem"))) (build-system r-build-system) (propagated-inputs (list r-attempt - r-cli r-config - r-crayon - r-desc - r-fs r-here r-htmltools - r-pkgload - r-roxygen2 - r-rstudioapi + r-rlang r-shiny - r-usethis r-yaml)) (native-inputs (list r-knitr)) (home-page "https://github.com/ThinkR-open/golem") |