mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add r-readr.
* gnu/packages/statistics.scm (r-readr): New variable.
This commit is contained in:
parent
62141c07f7
commit
03af370f6e
1 changed files with 22 additions and 0 deletions
|
@ -1265,3 +1265,25 @@ (define-public r-devtools
|
|||
(description "The devtools package is a collection of package development
|
||||
tools to simplify the devolpment of R packages.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-readr
|
||||
(package
|
||||
(name "r-readr")
|
||||
(version "0.2.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "readr" version))
|
||||
(sha256
|
||||
(base32
|
||||
"156422xwvskynna5kjc8h1qqnn50kxgjrihl2h2b7vm9sxxdyr2m"))))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-curl" ,r-curl)
|
||||
("r-rcpp" ,r-rcpp)
|
||||
("r-bh" ,r-bh)))
|
||||
(home-page "https://github.com/hadley/readr")
|
||||
(synopsis "Read tabular data")
|
||||
(description
|
||||
"This package provides functions to read flat or tabular text files from
|
||||
disk (or a connection).")
|
||||
(license license:gpl2+)))
|
||||
|
|
Loading…
Reference in a new issue