summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-crosstalk/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-crosstalk/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-crosstalk/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-crosstalk/package.py b/var/spack/repos/builtin/packages/r-crosstalk/package.py
new file mode 100644
index 0000000000..aa92cb027c
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-crosstalk/package.py
@@ -0,0 +1,23 @@
+# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class RCrosstalk(RPackage):
+ """Provides building blocks for allowing HTML widgets to communicate with
+ each other, with Shiny or without (i.e. static .html files)."""
+
+ homepage = "https://cran.r-project.org/web/packages/crosstalk/index.html"
+ url = "https://cran.r-project.org/src/contrib/crosstalk_1.0.0.tar.gz"
+
+ version('1.0.0', 'c13c21b81af2154be3f08870fd3a7077')
+
+ depends_on('r@3.4.0:3.4.9')
+ depends_on('r-htmltools', type=('build', 'run'))
+ depends_on('r-jsonlite', type=('build', 'run'))
+ depends_on('r-lazyeval', type=('build', 'run'))
+ depends_on('r-ggplot2', type=('build', 'run'))
+ depends_on('r-shiny', type=('build', 'run'))