bazel: add missing dependency on zip (#15402)

This commit is contained in:
Melven Roehrig-Zoellner 2020-03-10 10:18:29 +01:00 committed by GitHub
parent da677b3cb8
commit ebe7590310
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -92,6 +92,7 @@ class Bazel(Package):
# https://docs.bazel.build/versions/master/install-compile-source.html#bootstrap-unix-prereq
depends_on('jdk@1.8.0:1.8.999', type=('build', 'run'))
depends_on('python', type=('build', 'run'))
depends_on('zip', type=('build', 'run'))
# Pass Spack environment variables to the build
patch('bazelruleclassprovider-0.25.patch', when='@0.25:')