diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-11-26 16:59:29 +0100 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-12-11 15:44:07 +0100 |
commit | 03af370f6e488dbe4ce4121c5bf07cbafa07a672 (patch) | |
tree | ffa6e3cd9cc805af5148fe713709e3911bffa413 /gnu | |
parent | 62141c07f7e4680dd9bf5c644614d7cc14805c51 (diff) | |
download | guix-03af370f6e488dbe4ce4121c5bf07cbafa07a672.tar guix-03af370f6e488dbe4ce4121c5bf07cbafa07a672.tar.gz |
gnu: Add r-readr.
* gnu/packages/statistics.scm (r-readr): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 5482aca35e..f7f2377fd5 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1265,3 +1265,25 @@ informative error messages when it's not available.") (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+))) |