guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/92: gnu: Add r-fs.


From: Ricardo Wurmus
Subject: 03/92: gnu: Add r-fs.
Date: Tue, 30 Oct 2018 16:48:41 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit d6871153c8217f79cb2fe10a002eaaa9c4340e34
Author: Ricardo Wurmus <address@hidden>
Date:   Sun Oct 28 19:21:15 2018 +0100

    gnu: Add r-fs.
    
    * gnu/packages/cran.scm (r-fs): New variable.
---
 gnu/packages/cran.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 5e9973a..bc99c3e 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]