blob: fb6f0f5634b45a038a09b2faba048c799c4904c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# 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 RRzmq(RPackage):
"""Interface to the ZeroMQ lightweight messaging kernel."""
homepage = "http://github.com/armstrtw/rzmq"
url = "https://cran.r-project.org/src/contrib/rzmq_0.7.7.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/rzmq"
version('0.7.7', '8ba18fd1c222d1eb25bb622ccd2897e0')
depends_on('zeromq')
|