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-03-14 03:23:11 -04:00
|
|
|
sha256 = "0ad31a16c9e48b01a1a11daf908227a6bf6106269187cccf7398625fea2ba45a",
|
|
|
|
strip_prefix = "bazel-tools-4e045b9b4e3e613970ab68941b556a356239d433",
|
2023-03-30 03:41:56 -04:00
|
|
|
urls = [
|
|
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/0ad31a16c9e48b01a1a11daf908227a6bf6106269187cccf7398625fea2ba45a",
|
|
|
|
"https://github.com/ash2k/bazel-tools/archive/4e045b9b4e3e613970ab68941b556a356239d433.tar.gz",
|
|
|
|
],
|
|
|
|
type = "tar.gz",
|
2023-03-13 13:33:31 -04:00
|
|
|
)
|