diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/r-crosstalk/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/r-crosstalk/package.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/r-crosstalk/package.py b/var/spack/repos/builtin/packages/r-crosstalk/package.py index 39119c3e26..ad17c33aa6 100644 --- a/var/spack/repos/builtin/packages/r-crosstalk/package.py +++ b/var/spack/repos/builtin/packages/r-crosstalk/package.py @@ -10,13 +10,15 @@ 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" + homepage = "https://cloud.r-project.org/package=crosstalk" + url = "https://cloud.r-project.org/src/contrib/crosstalk_1.0.0.tar.gz" + list_url = "https://cloud.r-project.org/src/contrib/Archive/crosstalk" version('1.0.0', 'c13c21b81af2154be3f08870fd3a7077') - depends_on('r-htmltools', type=('build', 'run')) + depends_on('r-htmltools@0.3.5:', 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')) + depends_on('r-shiny@0.11:', type=('build', 'run')) + depends_on('r-r6', type=('build', 'run')) |