* [bug#74125] [PATCH] gnu: Add r-shiny-router.
@ 2024-10-30 22:41 King, Spencer via Guix-patches via
2025-01-09 7:03 ` [bug#74125] King, Spencer via Guix-patches via
0 siblings, 1 reply; 2+ messages in thread
From: King, Spencer via Guix-patches via @ 2024-10-30 22:41 UTC (permalink / raw)
To: 74125
[-- Attachment #1: Type: text/plain, Size: 0 bytes --]
[-- Attachment #2: 0001-gnu-Add-r-shiny-router.patch --]
[-- Type: application/octet-stream, Size: 1807 bytes --]
From 6cdbdc5383299498ad75f6a87a71b00216e7efaa Mon Sep 17 00:00:00 2001
Message-Id: <6cdbdc5383299498ad75f6a87a71b00216e7efaa.1730328037.git.spencer.king@geneoscopy.com>
From: Spencer King <spencer.king@geneoscopy.com>
Date: Wed, 30 Oct 2024 22:40:12 +0000
Subject: [PATCH] gnu: Add r-shiny-router.
* gnu/packages/cran.scm (r-shiny-router): New variable.
Change-Id: Ie2d89a1cb1cf0e863a7296df3299295474b8aac0
---
gnu/packages/cran.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 717e4eac89..88c6e7e3d3 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -5935,6 +5935,27 @@ (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))
+ (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
base-commit: 39fc289fd66eb348062b05d9ab6acad817f386f6
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [bug#74125]
2024-10-30 22:41 [bug#74125] [PATCH] gnu: Add r-shiny-router King, Spencer via Guix-patches via
@ 2025-01-09 7:03 ` King, Spencer via Guix-patches via
0 siblings, 0 replies; 2+ messages in thread
From: King, Spencer via Guix-patches via @ 2025-01-09 7:03 UTC (permalink / raw)
To: 74125@debbugs.gnu.org
Cc: Ricardo Wurmus, laurent.gatto@gmail.com, zimon.toutoune@gmail.com
[-- Attachment #1: Type: text/plain, Size: 128 bytes --]
I've updated the patch to include r-testthat as a native-input and have confirmed the package builds on HEAD. CC'ing the R team.
[-- Attachment #2: 0001-gnu-Add-r-shiny-router.patch --]
[-- Type: application/octet-stream, Size: 1846 bytes --]
From 3786a66843c6490b1310e112b00de8010f0dd98e Mon Sep 17 00:00:00 2001
Message-Id: <3786a66843c6490b1310e112b00de8010f0dd98e.1736405806.git.spencer.king@geneoscopy.com>
From: Spencer King <spencer.king@geneoscopy.com>
Date: Thu, 9 Jan 2025 06:56:32 +0000
Subject: [PATCH] gnu: Add r-shiny-router.
* gnu/packages/cran.scm (r-shiny-router): New variable.
Change-Id: I6f7e244bb2d8c267860a4a98d7a5e4b71d8a90b3
---
gnu/packages/cran.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 98597e3bbe..2feb175532 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -7093,6 +7093,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
base-commit: 395bd78fd082026584f35ee597f5c350f11f9d24
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-01-09 7:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-30 22:41 [bug#74125] [PATCH] gnu: Add r-shiny-router King, Spencer via Guix-patches via
2025-01-09 7:03 ` [bug#74125] King, Spencer via Guix-patches via
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.