diff options
author | King, Spencer <[email protected]> | 2025-01-03 19:00:44 +0000 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-01-23 16:18:58 +0100 |
commit | 29d133063010cc4f7c40aadb3124364eaf276797 (patch) | |
tree | a8a76413903bb92c1fde710a27d688fb2b986517 | |
parent | 582b1e16ffaa9e7066cee76c642e39278afeb6cd (diff) |
gnu: Add r-shinyauthr.
* gnu/packages/cran.scm (r-shinyauthr): New variable.
Change-Id: Ib96a8518e6bafaef61a03ac1b1131c4c893466a5
Signed-off-by: Ricardo Wurmus <[email protected]>
-rw-r--r-- | gnu/packages/cran.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 5f3594fe41..44167a3433 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7034,6 +7034,36 @@ extensive prebuilt widgets make it possible to build beautiful, responsive, and powerful applications with minimal effort.") (license license:artistic2.0))) +(define-public r-shinyauthr + (package + (name "r-shinyauthr") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "shinyauthr" version)) + (sha256 + (base32 "0apaqjkxpr96kx9indl0pifk5y75gdx5npfcvxfg5k2crpx9vmxk")))) + (properties `((upstream-name . "shinyauthr"))) + (build-system r-build-system) + ;; One of the tests requires r-shinytest, which has a big JavaScript + ;; problem. + (arguments (list #:tests? #false)) + (native-inputs (list r-testthat)) + (propagated-inputs (list r-dplyr + r-glue + r-rlang + r-shiny + r-shinyjs + r-sodium)) + (home-page "https://github.com/paulc91/shinyauthr") + (synopsis "Shiny authentication modules") + (description + "With this package you can add in-app user authentication to Shiny, +allowing you to secure publicly hosted apps and build dynamic user interfaces +from user information.") + (license license:expat))) + (define-public r-shinydisconnect (package (name "r-shinydisconnect") |