Skip to content

Commit 67e9ef7

Browse files
committed
Update bazel-zig-cc sha
Apparently it was overwritten.
1 parent 6f2be39 commit 67e9ef7

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

lambdas/dependencies.bzl

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ rules_go = struct(
3030

3131
bazel_zig_cc = struct(
3232
version = "1.0.1",
33-
sha = "a1c27343c0c5f4a9a5c5ac573f4e5388481380f3f5b09c2a551645808ab2c365",
33+
sha = "e9f82bfb74b3df5ca0e67f4d4989e7f1f7ce3386c295fd7fda881ab91f83e509",
3434
)
3535

3636
# WARNING: any changes in these macros may be BREAKING CHANGES for users
@@ -72,9 +72,12 @@ def rules_lambda_dependencies():
7272
maybe(
7373
http_archive,
7474
name = "bazel-zig-cc",
75-
strip_prefix = "bazel-zig-cc-{}".format(bazel_zig_cc.version),
75+
strip_prefix = "bazel-zig-cc-v{}".format(bazel_zig_cc.version),
7676
urls = [
77-
"https://github.com/uber/bazel-zig-cc/archive/refs/tags/v{}.tar.gz".format(bazel_zig_cc.version),
77+
"https://github.com/uber/hermetic_cc_toolchain/releases/download/v{}/v{}.tar.gz".format(
78+
bazel_zig_cc.version,
79+
bazel_zig_cc.version,
80+
),
7881
],
7982
sha256 = bazel_zig_cc.sha,
8083
)

0 commit comments

Comments
 (0)