diff options
author | Christoph Junghans <junghans@lanl.gov> | 2019-05-14 16:36:31 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-14 16:36:31 -0600 |
commit | 6083de3baae9bf422ec6aacd6995a796969f1f8f (patch) | |
tree | 88db2661975c6899c1c0c7813ab765a40ecdc0bf /var | |
parent | 723eea00f354dadfa89b730ffbe0a6fdf118d121 (diff) | |
download | spack-6083de3baae9bf422ec6aacd6995a796969f1f8f.tar.gz spack-6083de3baae9bf422ec6aacd6995a796969f1f8f.tar.bz2 spack-6083de3baae9bf422ec6aacd6995a796969f1f8f.tar.xz spack-6083de3baae9bf422ec6aacd6995a796969f1f8f.zip |
nut: add v0.1.1 (#11444)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/nut/package.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/nut/package.py b/var/spack/repos/builtin/packages/nut/package.py index 1097e70614..f159838c63 100644 --- a/var/spack/repos/builtin/packages/nut/package.py +++ b/var/spack/repos/builtin/packages/nut/package.py @@ -13,12 +13,13 @@ class Nut(CMakePackage): and performance issues.""" homepage = "https://github.com/lanl/NuT" + url = "https://github.com/lanl/NuT/archive/0.1.0.tar.gz" git = "https://github.com/lanl/NuT.git" tags = ['proxy-app'] - version('serial', branch='master') - version('openmp', branch='openmp') + version('master', branch='master') + version('0.1.1', sha256='9f1dca4a9d7003b170fd57d6720228ff25471616cf884e033652e90c49c089bb') depends_on('cmake@3.0:') depends_on('random123') |