gnu: Add r-shinyvalidate.

* gnu/packages/cran.scm (r-shinyvalidate): New variable.

Change-Id: I554561d62269dda612cb0de21c23a36ad313907c
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
King, Spencer 2024-10-30 22:35:31 +00:00 committed by Ricardo Wurmus
parent ce3ffac5d3
commit c50d7b3b05
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -7167,6 +7167,28 @@ (define-public r-shinytree
supports interactive trees, to enable rich, editable trees in Shiny.")
(license license:expat)))
(define-public r-shinyvalidate
(package
(name "r-shinyvalidate")
(version "0.1.3")
(source
(origin
(method url-fetch)
(uri (cran-uri "shinyvalidate" version))
(sha256
(base32 "01qlqzp0g6782maj73yygmwlchhv4xcnlc7j0w3lp6dcj7qkzz68"))))
(properties `((upstream-name . "shinyvalidate")))
(build-system r-build-system)
(propagated-inputs (list r-glue r-htmltools r-rlang r-shiny))
(native-inputs (list r-testthat))
(home-page "https://rstudio.github.io/shinyvalidate/")
(synopsis "Input validation for Shiny apps")
(description
"This package improves the user experience of Shiny apps by helping to
provide feedback when required inputs are missing, or input values are not
valid.")
(license license:expat)))
(define-public r-shinydashboard
(package
(name "r-shinydashboard")