diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-09-29 15:29:02 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-09-30 12:39:34 +0200 |
commit | 81642f99cfdc6fda951faade8f0719c1bf370973 (patch) | |
tree | ac10520a31398fcee1bc62969b377ea2d73b551a /gnu/packages/cran.scm | |
parent | 506436fde86aaa2f59c08f3f9178c7999eb2ba18 (diff) |
gnu: Add r-paws-end-user-computing.
* gnu/packages/cran.scm (r-paws-end-user-computing): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 5b7b6da55b..bd60daec85 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -31260,6 +31260,28 @@ tools services, including version control, continuous integration and deployment, and more.") (license license:asl2.0))) +(define-public r-paws-end-user-computing + (package + (name "r-paws-end-user-computing") + (version "0.1.12") + (source + (origin + (method url-fetch) + (uri (cran-uri "paws.end.user.computing" version)) + (sha256 + (base32 "1xxsz86nx128sizym9np8vldzkbym0p3i6vcy94kq1y0cylaicv3")))) + (properties `((upstream-name . "paws.end.user.computing"))) + (build-system r-build-system) + (propagated-inputs + `(("r-paws-common" ,r-paws-common))) + (home-page "https://github.com/paws-r/paws") + (synopsis "Amazon Web Services end user computing services") + (description + "This package provides an interface to Amazon Web Services end user +computing services, including collaborative document editing, mobile intranet, +and more.") + (license license:asl2.0))) + (define-public r-paws-application-integration (package (name "r-paws-application-integration") |