From 881cc61c1bb5e7d0f5fc3b60749f35496fdf1ba6 Mon Sep 17 00:00:00 2001 From: pimi Date: Thu, 23 Aug 2018 13:33:23 +0200 Subject: [PATCH] gnu: Add r-manipulatewidget. gnu/packages/cran.scm (r-manipulatewidget): New variable. Signed-off-by: Leo Famulari --- gnu/packages/cran.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) 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 @@ (define-public r-slam "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+)))