From bb3c01e940be4c4357591aa066b9ffc65371615c Mon Sep 17 00:00:00 2001
From: Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
Date: Wed, 28 Dec 2016 10:11:45 +0100
Subject: [PATCH 06/11] gnu: Add r-shiny.

---
 gnu/packages/web.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 07c4c0d..cec659e 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -3968,3 +3968,32 @@ useful for users behind restrictive firewalls.  As long as Web traffic is
 allowed, even through a HTTP-only proxy, httptunnel can be combined with other
 tools like SSH (Secure Shell) to reach the outside world.")
     (license l:gpl2+)))
+
+(define-public r-shiny
+  (package
+    (name "r-shiny")
+    (version "0.14.2")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "shiny" version))
+              (sha256
+               (base32
+                "1sx8c490hbj7lsmvwwq5p4a32dcz4fp4wp1zvaaf2pfg713pk593"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-digest" ,r-digest)
+       ("r-htmltools" ,r-htmltools)
+       ("r-httpuv" ,r-httpuv)
+       ("r-jsonlite" ,r-jsonlite)
+       ("r-mime" ,r-mime)
+       ("r-r6" ,r-r6)
+       ("r-sourcetools" ,r-sourcetools)
+       ("r-xtable" ,r-xtable)))
+    (home-page "http://shiny.rstudio.com")
+    (synopsis "Web application framework for R")
+    (description
+     "Makes it incredibly easy to build interactive web applications with R.
+Automatic reactive binding between inputs and outputs and extensive pre-built
+widgets make it possible to build beautiful, responsive, and powerful
+applications with minimal effort.")
+    (license l:gpl3)))
-- 
1.9.1

