From 7b4704fcc4bdf455522c045002e88d875e050e16 Mon Sep 17 00:00:00 2001
From: Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
Date: Wed, 28 Dec 2016 10:15:48 +0100
Subject: [PATCH 07/11] gnu: Add r-shinydashboard.

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

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index cec659e..724abd1 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -3997,3 +3997,24 @@ 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)))
+
+(define-public r-shinydashboard
+  (package
+    (name "r-shinydashboard")
+    (version "0.5.3")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "shinydashboard" version))
+              (sha256
+               (base32
+                "0anw22qxbis69zm0ls6alsc3ann27hvgs5mv1wvr4ppk7q8cg4l2"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-htmltools" ,r-htmltools)
+       ("r-shiny" ,r-shiny)))
+    (home-page "http://rstudio.github.io/shinydashboard/")
+    (synopsis "Create dashboards with shiny")
+    (description
+     "Create dashboards with shiny. This package provides a theme on top of
+Shiny, making it easy to create attractive dashboards.")
+    (license l:gpl2)))
-- 
1.9.1

