guix-commits
[Top][All Lists]
Advanced

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

04/125: gnu: Add r-googledrive.


From: guix-commits
Subject: 04/125: gnu: Add r-googledrive.
Date: Tue, 4 May 2021 01:33:04 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 11108a9ab459668ee1ba81a6fbca64d224d35365
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue May 4 07:15:31 2021 +0200

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index b92a825..68a2dff 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -175,6 +175,37 @@ automatically pruning objects to maintain the 
constraints.")
 visualization of their differences.")
     (license license:gpl2+)))
 
+(define-public r-googledrive
+  (package
+    (name "r-googledrive")
+    (version "1.0.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "googledrive" version))
+       (sha256
+        (base32
+         "0qbyl0wyrxmwn9jg0d2s7c1kmmvmx61qbyx3qby4js8dks70f1ls"))))
+    (properties `((upstream-name . "googledrive")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-curl" ,r-curl)
+       ("r-gargle" ,r-gargle)
+       ("r-glue" ,r-glue)
+       ("r-httr" ,r-httr)
+       ("r-jsonlite" ,r-jsonlite)
+       ("r-magrittr" ,r-magrittr)
+       ("r-purrr" ,r-purrr)
+       ("r-rlang" ,r-rlang)
+       ("r-tibble" ,r-tibble)
+       ("r-uuid" ,r-uuid)))
+    (native-inputs
+     `(("r-knitr" ,r-knitr)))
+    (home-page "https://googledrive.tidyverse.org";)
+    (synopsis "Interface to Google Drive")
+    (description "This package lets you manage Google Drive files from R.")
+    (license license:expat)))
+
 (define-public r-waldo
   (package
     (name "r-waldo")



reply via email to

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