From b895948fff9738135d8ae7c6ce91dcde47fbc6c7 Mon Sep 17 00:00:00 2001 From: "King, Spencer" Date: Wed, 30 Oct 2024 22:41:52 +0000 Subject: gnu: Add r-shiny-router. * gnu/packages/cran.scm (r-shiny-router): New variable. Change-Id: Ie2d89a1cb1cf0e863a7296df3299295474b8aac0 Signed-off-by: Ricardo Wurmus --- gnu/packages/cran.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 06ad524cd2..f771c7b03e 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7117,6 +7117,28 @@ (define-public r-shinymeta the end user.") (license license:gpl3))) +(define-public r-shiny-router + (package + (name "r-shiny-router") + (version "0.3.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "shiny.router" version)) + (sha256 + (base32 "1zg8cdxmw620i1iv7jrghd768gw7iv52hi6lx79xvnfjz8w4si3x")))) + (properties `((upstream-name . "shiny.router"))) + (build-system r-build-system) + (propagated-inputs (list r-glue r-htmltools r-rlang r-shiny)) + (native-inputs (list r-testthat)) + (home-page "https://appsilon.github.io/shiny.router/") + (synopsis "Basic Routing for Shiny Web Applications") + (description + "This package provides a simple router for your Shiny apps. The router +allows you to create dynamic web applications with a real-time User Interface +and easily share url to pages within your Shiny apps.") + (license license:expat))) + ;; This package includes minified JavaScript files. When upgrading please ;; check that there are no new minified JavaScript files. (define-public r-shinytree -- cgit v1.2.3