Skip to content
Snippets Groups Projects
Unverified Commit d7637e5e authored by Charlie Ritter's avatar Charlie Ritter Committed by Marius Bakke
Browse files

gnu: Add r-readxl.


* gnu/packages/cran.scm (r-readxl): New variable.

Signed-off-by: default avatarMarius Bakke <mbakke@fastmail.com>
parent 9a91c925
No related branches found
No related tags found
No related merge requests found
...@@ -37,6 +37,32 @@ (define-module (gnu packages cran) ...@@ -37,6 +37,32 @@ (define-module (gnu packages cran)
#:use-module (gnu packages statistics) #:use-module (gnu packages statistics)
#:use-module (gnu packages web)) #:use-module (gnu packages web))
(define-public r-readxl
(package
(name "r-readxl")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "readxl" version))
(sha256
(base32
"1bf7gxw9r11m4llyymplxiaa4gzgyj4bwmwad5in756pzq3jzmpv"))))
(build-system r-build-system)
(propagated-inputs
`(("r-cellranger" ,r-cellranger)
("r-rcpp" ,r-rcpp)
("r-tibble" ,r-tibble)))
(home-page "https://readxl.tidyverse.org")
(synopsis "Read Excel files")
(description
"This package lets you import Excel files into R. It supports
@file{.xls} via the embedded @code{libxls} C library and @file{.xlsx} via
the embedded @code{RapidXML} C++ library.")
;; XXX: This package bundles a copy of 'libxsl' which is BSD-2 and
;; 'rapidxml' which is Boost.
(license (list license:gpl3 license:bsd-2 license:boost1.0))))
(define-public r-modelr (define-public r-modelr
(package (package
(name "r-modelr") (name "r-modelr")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment