summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2021-04-20 04:14:38 -0500
committerGitHub <noreply@github.com>2021-04-20 03:14:38 -0600
commit2f3ded37e115c3bdb37738b3a515a07bd401065d (patch)
tree6bcfb8a19d97a2d293eff3fac0b611acb4a82b54
parent2b3efb40caba45df7eae12e006ff71e9e27e7e77 (diff)
downloadspack-2f3ded37e115c3bdb37738b3a515a07bd401065d.tar.gz
spack-2f3ded37e115c3bdb37738b3a515a07bd401065d.tar.bz2
spack-2f3ded37e115c3bdb37738b3a515a07bd401065d.tar.xz
spack-2f3ded37e115c3bdb37738b3a515a07bd401065d.zip
r-shinythemes: new package (#23115)
-rw-r--r--var/spack/repos/builtin/packages/r-shinythemes/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-shinythemes/package.py b/var/spack/repos/builtin/packages/r-shinythemes/package.py
new file mode 100644
index 0000000000..c252021809
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-shinythemes/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2021 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 RShinythemes(RPackage):
+ """Themes for Shiny:
+
+ Themes for use with Shiny. Includes several Bootstrap themes from
+ <https://bootswatch.com/>, which are packaged for use with Shiny
+ applications."""
+
+ homepage = "https://rstudio.github.io/shinythemes/"
+ cran = "shinythemes"
+
+ version('1.2.0', sha256='37d68569ce838c7da9f0ea7e2b162ecf38fba2ae448a4888b6dd29c4bb5b2963')
+
+ depends_on('r@3.0.0:', type=('build', 'run'))
+ depends_on('r-shiny@0.11:', type=('build', 'run'))