mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 17:46:43 +01:00
gnu: Add r-shinybs.
* gnu/packages/cran.scm (r-shinybs): New variable.
This commit is contained in:
parent
704de8f5ee
commit
849350fbce
1 changed files with 27 additions and 0 deletions
|
@ -10923,6 +10923,33 @@ (define-public r-upsetr
|
||||||
several common set, element and attribute related tasks.")
|
several common set, element and attribute related tasks.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
;; This package includes a JavaScript file, which is not minified. When
|
||||||
|
;; upgrading please check that there are no new minified JavaScript files.
|
||||||
|
(define-public r-shinybs
|
||||||
|
(package
|
||||||
|
(name "r-shinybs")
|
||||||
|
(version "0.61")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "shinyBS" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
|
||||||
|
(properties `((upstream-name . "shinyBS")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
;; The tests spawn Shiny browser apps. They cannot be run
|
||||||
|
;; non-interactively.
|
||||||
|
(arguments '(#:tests? #f))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-htmltools" ,r-htmltools)
|
||||||
|
("r-shiny" ,r-shiny)))
|
||||||
|
(home-page "https://ebailey78.github.io/shinyBS/")
|
||||||
|
(synopsis "Twitter Bootstrap components for Shiny")
|
||||||
|
(description
|
||||||
|
"This package adds additional Twitter Bootstrap components to Shiny.")
|
||||||
|
(license license:gpl3)))
|
||||||
|
|
||||||
(define-public r-outliers
|
(define-public r-outliers
|
||||||
(package
|
(package
|
||||||
(name "r-outliers")
|
(name "r-outliers")
|
||||||
|
|
Loading…
Reference in a new issue