diff options
author | pimi <madalinionel.patrascu@mdc-berlin.de> | 2018-08-23 13:33:23 +0200 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-08-23 16:26:40 -0400 |
commit | 881cc61c1bb5e7d0f5fc3b60749f35496fdf1ba6 (patch) | |
tree | 64a5cc6e1ecf8bc0aff0b5e839f3505b58d96583 /gnu/packages/cran.scm | |
parent | 87b576aa8ba6befefde8b700e4ec6cc953514348 (diff) | |
download | patches-881cc61c1bb5e7d0f5fc3b60749f35496fdf1ba6.tar patches-881cc61c1bb5e7d0f5fc3b60749f35496fdf1ba6.tar.gz |
gnu: Add r-manipulatewidget.
gnu/packages/cran.scm (r-manipulatewidget): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 7271279a2a..afa5d97d57 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4890,3 +4890,34 @@ the analyzed items.") "This package contains data structures and algorithms for sparse arrays and matrices, based on index arrays and simple triplet representations, respectively.") (license license:gpl2))) + +(define-public r-manipulatewidget + (package + (name "r-manipulatewidget") + (version "0.10.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "manipulateWidget" version)) + (sha256 + (base32 "1zagrbwkn2d50zzw8i2vyb1hsq4cydmfsqiy1a2qlp6zrv8a6q9x")))) + (properties + `((upstream-name . "manipulateWidget"))) + (build-system r-build-system) + (propagated-inputs + `(("r-base64enc" ,r-base64enc) + ("r-codetools" ,r-codetools) + ("r-htmltools" ,r-htmltools) + ("r-htmlwidgets" ,r-htmlwidgets) + ("r-knitr" ,r-knitr) + ("r-miniui" ,r-miniui) + ("r-shiny" ,r-shiny) + ("r-webshot" ,r-webshot))) + (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/") + (synopsis "Add even more interactivity to interactive charts") + (description + "This package lets you create in just a few lines of R code a nice user interface to +modify the data or the graphical parameters of one or multiple interactive +charts. It is useful to quickly explore visually some data or for package +developers to generate user interfaces easy to maintain.") + (license license:gpl2+))) |