We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12718e2 commit 0606ff5Copy full SHA for 0606ff5
WORKSPACE
@@ -3,6 +3,18 @@ workspace(name = "io_tweag_inline_java")
3
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
4
5
6
+# workarorund for https://github.com/bazelbuild/bazel/issues/25124
7
+
8
+zlib_version = "1.3.1"
9
+zlib_sha256 = "9a93b2b7dfdac77ceba5a558a580e74667dd6fede4585b91eefb60f03b72df23"
10
+http_archive(
11
+ name = "zlib",
12
+ build_file = "@com_google_protobuf//:third_party/zlib.BUILD",
13
+ sha256 = zlib_sha256,
14
+ strip_prefix = "zlib-%s" % zlib_version,
15
+ urls = ["https://github.com/madler/zlib/releases/download/v{v}/zlib-{v}.tar.gz".format(v = zlib_version)],
16
+)
17
18
# rules_nixpkgs and rules_haskell
19
20
http_archive(
0 commit comments