rekado pushed a commit to branch master
in repository guix.
commit ffa42c77416c6d6f5f3be2faa6b6e0d8bae9b0ed
Author: zimoun <[email protected]>
AuthorDate: Wed Dec 2 16:25:30 2020 +0100
gnu: Add r-aws-s3.
* gnu/packages/cran.scm (r-aws-s3): New variable.
---
gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index cbe9ac9..9533006 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -24801,3 +24801,30 @@ Services (AWS) and provides a mechanism for retrieving
credentials from
environment variables, AWS credentials files, and EC2 instance metadata. For
use on EC2 instances, the package 'aws.ec2metadata' is suggested.")
(license license:gpl2+)))
+
+(define-public r-aws-s3
+ (package
+ (name "r-aws-s3")
+ (version "0.3.21")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "aws.s3" version))
+ (sha256
+ (base32
+ "132cczq0ml7lpp2yl6l4p99dn1zihrncnpa6wyad4m9mnr50a8dx"))))
+ (properties `((upstream-name . "aws.s3")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-aws-signature" ,r-aws-signature)
+ ("r-base64enc" ,r-base64enc)
+ ("r-curl" ,r-curl)
+ ("r-digest" ,r-digest)
+ ("r-httr" ,r-httr)
+ ("r-xml2" ,r-xml2)))
+ (home-page "https://github.com/cloudyr/aws.s3")
+ (synopsis "AWS S3 Client Package")
+ (description
+ "This package provides a simple client package for the Amazon Web
+Services (AWS) Simple Storage Service (S3) REST API.")
+ (license license:gpl2+)))