summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2020-03-19 09:59:45 +0100
committerRicardo Wurmus <rekado@elephly.net>2020-03-19 10:06:27 +0100
commit30c56e67f7bbad2501fc855b404bd30c5bf68524 (patch)
tree0cc1455fead87e6c88f3833216bfcaa995727cba
parent2d6a7bca9e196bea3a13ebf90ed4b18c6e781117 (diff)
downloadpatches-30c56e67f7bbad2501fc855b404bd30c5bf68524.tar
patches-30c56e67f7bbad2501fc855b404bd30c5bf68524.tar.gz
gnu: r-crosstalk: Update to 1.1.0.1.
* gnu/packages/cran.scm (r-crosstalk): Update to 1.1.0.1. [propagated-inputs]: Remove r-ggplot2 and r-shiny.
-rw-r--r--gnu/packages/cran.scm10
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 4c18275eaa..f0f6c9e8be 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -1157,22 +1157,20 @@ in R and Shiny via the D3 visualization library.")
(define-public r-crosstalk
(package
(name "r-crosstalk")
- (version "1.0.0")
+ (version "1.1.0.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "crosstalk" version))
(sha256
(base32
- "0lfa89vhrzi7a1rghmygcjr8gzddw35sinb3jx6g49mc9jias7mk"))))
+ "03ihj7cimkklrbad9zic78xsrfcisygmgy859hqnx0hiph80p9rn"))))
(build-system r-build-system)
(propagated-inputs
- `(("r-ggplot2" ,r-ggplot2)
- ("r-htmltools" ,r-htmltools)
+ `(("r-htmltools" ,r-htmltools)
("r-jsonlite" ,r-jsonlite)
("r-lazyeval" ,r-lazyeval)
- ("r-r6" ,r-r6)
- ("r-shiny" ,r-shiny)))
+ ("r-r6" ,r-r6)))
(home-page "https://rstudio.github.io/crosstalk/")
(synopsis "Inter-widget interactivity for HTML widgets")
(description