mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
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:
parent
ce3ffac5d3
commit
c50d7b3b05
1 changed files with 22 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue