mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add r-writexl.
* gnu/packages/cran.scm (r-writexl): New variable.
This commit is contained in:
parent
546fc4aa55
commit
846325a8d8
1 changed files with 20 additions and 0 deletions
|
@ -4435,3 +4435,23 @@ (define-public r-hdf5r
|
|||
functionality is added so that HDF5 objects behave very similar to their
|
||||
corresponding R counterparts.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public r-writexl
|
||||
(package
|
||||
(name "r-writexl")
|
||||
(version "1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "writexl" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0r2v12dc4zqmr1agp6vbw0fc48i278018684x84psjjqfmnv14cf"))))
|
||||
(build-system r-build-system)
|
||||
(inputs `(("zlib" ,zlib)))
|
||||
(home-page "https://github.com/ropensci/writexl")
|
||||
(synopsis "Export data frames to xlsx format")
|
||||
(description
|
||||
"This package provides a data frame to xlsx exporter based on
|
||||
libxlsxwriter.")
|
||||
(license license:bsd-2)))
|
||||
|
|
Loading…
Reference in a new issue