guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: Add r-rsconnect.


From: guix-commits
Subject: 02/03: gnu: Add r-rsconnect.
Date: Tue, 25 Feb 2020 16:49:29 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit d2ebdb795d00ae57199491af678ba97a905abc55
Author: Ricardo Wurmus <address@hidden>
AuthorDate: Tue Feb 25 22:08:38 2020 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index c6514c7..39d80e0 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -20259,3 +20259,32 @@ interesting features. iheatmapr uses the plotly 
library for interactivity.")
 you to manage the R packages your project depends on in an isolated, portable,
 and reproducible way.")
     (license license:gpl2)))
+
+(define-public r-rsconnect
+  (package
+    (name "r-rsconnect")
+    (version "0.8.16")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "rsconnect" version))
+       (sha256
+        (base32
+         "05ii0p0p7xpf8z0c1594s5q7wpwcs7lmlddrd67s5p2ka5m8qwiz"))))
+    (properties `((upstream-name . "rsconnect")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-curl" ,r-curl)
+       ("r-digest" ,r-digest)
+       ("r-jsonlite" ,r-jsonlite)
+       ("r-openssl" ,r-openssl)
+       ("r-packrat" ,r-packrat)
+       ("r-rstudioapi" ,r-rstudioapi)
+       ("r-yaml" ,r-yaml)))
+    (home-page "https://github.com/rstudio/rsconnect";)
+    (synopsis "Deployment interface for R Markdown documents and Shiny 
applications")
+    (description
+     "This package provides a programmatic deployment interface for RPubs,
+shinyapps.io, and RStudio Connect.  Supported content types include R Markdown
+documents, Shiny applications, Plumber APIs, plots, and static web content.")
+    (license license:gpl2)))



reply via email to

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