diff options
author | Dr. Christian Tacke <58549698+ChristianTackeGSI@users.noreply.github.com> | 2020-04-06 18:15:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-06 11:15:57 -0500 |
commit | b1bea70df1f62e4c0447a406b77266b804eec5df (patch) | |
tree | afa8ef56faaf23f889519bcf1c5ad9d202605d4a | |
parent | 55d15fc07e28de32d458ab556775e82c7f8d8d11 (diff) | |
download | spack-b1bea70df1f62e4c0447a406b77266b804eec5df.tar.gz spack-b1bea70df1f62e4c0447a406b77266b804eec5df.tar.bz2 spack-b1bea70df1f62e4c0447a406b77266b804eec5df.tar.xz spack-b1bea70df1f62e4c0447a406b77266b804eec5df.zip |
nanomsg: add new Package (#15894)
-rw-r--r-- | var/spack/repos/builtin/packages/nanomsg/package.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/nanomsg/package.py b/var/spack/repos/builtin/packages/nanomsg/package.py new file mode 100644 index 0000000000..c3c5bb05e6 --- /dev/null +++ b/var/spack/repos/builtin/packages/nanomsg/package.py @@ -0,0 +1,17 @@ +# Copyright 2013-2020 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 Nanomsg(CMakePackage): + """The nanomsg library is a simple high-performance + implementation of several 'scalability protocols'""" + + homepage = "https://nanomsg.org/" + url = "https://github.com/nanomsg/nanomsg/archive/1.0.0.tar.gz" + + version('1.1.5', sha256='218b31ae1534ab897cb5c419973603de9ca1a5f54df2e724ab4a188eb416df5a') + version('1.0.0', sha256='24afdeb71b2e362e8a003a7ecc906e1b84fd9f56ce15ec567481d1bb33132cc7') |