2023-03-13 13:33:31 -04:00
|
|
|
"""multirun_deps"""
|
|
|
|
|
2023-03-14 03:23:11 -04:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
2023-03-13 13:33:31 -04:00
|
|
|
|
|
|
|
def multirun_deps():
|
2023-03-14 03:23:11 -04:00
|
|
|
http_archive(
|
2023-03-13 13:33:31 -04:00
|
|
|
name = "com_github_ash2k_bazel_tools",
|
2023-05-17 03:43:36 -04:00
|
|
|
sha256 = "a911dab6711bc12a00f02cc94b66ced7dc57650e382ebd4f17c9cdb8ec2cbd56",
|
|
|
|
strip_prefix = "bazel-tools-2add5bb84c2837a82a44b57e83c7414247aed43a",
|
2023-03-30 03:41:56 -04:00
|
|
|
urls = [
|
2023-05-17 03:43:36 -04:00
|
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/a911dab6711bc12a00f02cc94b66ced7dc57650e382ebd4f17c9cdb8ec2cbd56",
|
|
|
|
"https://github.com/ash2k/bazel-tools/archive/2add5bb84c2837a82a44b57e83c7414247aed43a.tar.gz",
|
2023-03-30 03:41:56 -04:00
|
|
|
],
|
|
|
|
type = "tar.gz",
|
2023-03-13 13:33:31 -04:00
|
|
|
)
|