diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2022-06-16 03:22:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-15 20:22:58 -0500 |
commit | 3b3be702261bccda069f6353e44184d600b291ba (patch) | |
tree | 5370338c1239aa78992d81e735648f9fe01720d6 | |
parent | 95888602f260501de46a6c8421a9bdca2edb4319 (diff) | |
download | spack-3b3be702261bccda069f6353e44184d600b291ba.tar.gz spack-3b3be702261bccda069f6353e44184d600b291ba.tar.bz2 spack-3b3be702261bccda069f6353e44184d600b291ba.tar.xz spack-3b3be702261bccda069f6353e44184d600b291ba.zip |
r-httpuv: fix zlib dependency (#31121)
-rw-r--r-- | var/spack/repos/builtin/packages/r-httpuv/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-httpuv/package.py b/var/spack/repos/builtin/packages/r-httpuv/package.py index 8d6a66efae..0076bf6de1 100644 --- a/var/spack/repos/builtin/packages/r-httpuv/package.py +++ b/var/spack/repos/builtin/packages/r-httpuv/package.py @@ -33,5 +33,6 @@ class RHttpuv(RPackage): depends_on('r-later@0.8.0:', type=('build', 'run'), when='@1.5.0:') depends_on('gmake', type='build') depends_on('zip') + depends_on('zlib', when='@1.6.4:') depends_on('r-bh', type=('build', 'run'), when='@1.5.5') |