diff options
author | zimoun <zimon.toutoune@gmail.com> | 2020-12-02 16:25:30 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-12-09 12:12:30 +0100 |
commit | ffa42c77416c6d6f5f3be2faa6b6e0d8bae9b0ed (patch) | |
tree | cb5191330bb6e12d3c967973a8d1d019696fb391 | |
parent | 7f940bd09397a13dfde158baa2ad8ed9943b587a (diff) |
gnu: Add r-aws-s3.
* gnu/packages/cran.scm (r-aws-s3): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index cbe9ac9bf8..9533006a26 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+))) |