gnu: Add r-fs.

* gnu/packages/cran.scm (r-fs): New variable.
master
Ricardo Wurmus 2018-10-28 19:21:15 +01:00
parent 21405e81e7
commit d6871153c8
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 23 additions and 0 deletions

View File

@ -6736,3 +6736,26 @@ back to file after modifications.")
(description
"This package provides a minimal R client to access the GitHub API.")
(license license:expat)))
(define-public r-fs
(package
(name "r-fs")
(version "1.2.6")
(source
(origin
(method url-fetch)
(uri (cran-uri "fs" version))
(sha256
(base32
"0kqqaqqml8x3r1mdld40iwns0ylj2f52qsdh1vcn39f7w7c2ka8j"))))
(build-system r-build-system)
(propagated-inputs
`(("r-rcpp" ,r-rcpp)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(home-page "http://fs.r-lib.org")
(synopsis "Cross-platform file system operations based on libuv")
(description
"This package provides a cross-platform interface to file system
operations, built on top of the libuv C library.")
(license license:gpl3)))