summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAmjad Kotobi <amjadkotbi@gmail.com>2020-05-22 17:59:52 +0200
committerPeter Scheibel <scheibel1@llnl.gov>2020-05-22 19:30:41 -0700
commiteee6942c8bab04d056de9827d4d2009d521f222e (patch)
tree0f31969096f0d6d23a32a2d3d9f7e58bca5ac625 /var
parent9bcf4480b51bd676e975f408a1ea9c2ef1e2eecc (diff)
downloadspack-eee6942c8bab04d056de9827d4d2009d521f222e.tar.gz
spack-eee6942c8bab04d056de9827d4d2009d521f222e.tar.bz2
spack-eee6942c8bab04d056de9827d4d2009d521f222e.tar.xz
spack-eee6942c8bab04d056de9827d4d2009d521f222e.zip
r-nimble: New package
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-nimble/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-nimble/package.py b/var/spack/repos/builtin/packages/r-nimble/package.py
new file mode 100644
index 0000000000..c0cd1c2b40
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-nimble/package.py
@@ -0,0 +1,27 @@
+# Copyright 2013-2019 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 RNimble(AutotoolsPackage):
+ """A system for writing hierarchical statistical models largely
+ compatible with 'BUGS' and 'JAGS', writing nimbleFunctions to
+ operate models and do basic R-style math, and compiling both
+ models and nimbleFunctions via custom- generated C++.
+ """
+
+ homepage = "https://cloud.r-project.org/package=nimble"
+ url = "https://cloud.r-project.org/src/contrib/nimble_0.9.1.tar.gz"
+ list_url = "https://cloud.r-project.org/src/contrib/Archive/nimble"
+
+ version('0.9.1', sha256='ad5e8a171193cb0172e68bf61c4f94432c45c131a150101ad1c5c7318c335757')
+ version('0.9.0', sha256='ebc28fadf933143eea73900cacaf96ff81cb3c2d607405016062b7e93afa5611')
+
+ depends_on('r@3.1.2:', type=('build', 'run'))
+ depends_on('r-igraph', type=('build', 'run'))
+ depends_on('r-coda', type=('build', 'run'))
+ depends_on('r-r6', type=('build', 'run'))
+ depends_on('automake')