diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-05-12 16:53:27 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-05-12 19:44:28 +0200 |
commit | 2d233de8265541c1c1919bd199a049848fe2c59b (patch) | |
tree | e94440465b37082ef37df3d4fd690875ccf87146 /gnu/packages/cran.scm | |
parent | 8747d75244df63b7c749d55431fcd55469236c63 (diff) | |
download | guix-2d233de8265541c1c1919bd199a049848fe2c59b.tar.gz |
gnu: r-openxlsx: Update to 4.1.5.
* gnu/packages/cran.scm (r-openxlsx): Update to 4.1.5. [native-inputs]: Add r-knitr.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 91df9a8352..ea77dce5b1 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5636,19 +5636,21 @@ additional external tools on any platform.") (define-public r-openxlsx (package (name "r-openxlsx") - (version "4.1.4") + (version "4.1.5") (source (origin (method url-fetch) (uri (cran-uri "openxlsx" version)) (sha256 (base32 - "1mwxldw9i9nfksx1i6h1kfs7vmsz9fgyllbsipar4vnfyqhqp8q7")))) + "0wkpa3wsd8rs0pib7cp67iv0s6jn99frcrw7clypqxmvvdwyb9kq")))) (build-system r-build-system) (propagated-inputs `(("r-rcpp" ,r-rcpp) ("r-stringi" ,r-stringi) ("r-zip" ,r-zip))) + (native-inputs + `(("r-knitr" ,r-knitr))) (home-page "https://github.com/awalker89/openxlsx") (synopsis "Read, write and edit XLSX files") (description |