me
/
guix
Archived
1
0
Fork 0

gnu: Add r-googledrive.

* gnu/packages/cran.scm (r-googledrive): New variable.
master
Ricardo Wurmus 2021-05-04 07:15:31 +02:00
parent fadf5765c1
commit 11108a9ab4
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 31 additions and 0 deletions

View File

@ -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")