diff options
author | King, Spencer <[email protected]> | 2024-10-30 22:41:52 +0000 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-01-23 16:11:27 +0100 |
commit | b895948fff9738135d8ae7c6ce91dcde47fbc6c7 (patch) | |
tree | ab4ce4a3767ab49afe58692df6adf313ea9f8c7b | |
parent | 9467c967e8dbff3b4c64a23a9ff552f8e96f61f0 (diff) |
gnu: Add r-shiny-router.
* gnu/packages/cran.scm (r-shiny-router): New variable.
Change-Id: Ie2d89a1cb1cf0e863a7296df3299295474b8aac0
Signed-off-by: Ricardo Wurmus <[email protected]>
-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 06ad524cd2..f771c7b03e 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7117,6 +7117,28 @@ console). It also provides tools for bundling both the code and results to 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 |