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",
|
2024-05-10 05:31:02 -04:00
|
|
|
sha256 = "c5c2bb097ef427ab021f522828167c6d85c3e9077763629343282c51dbde03db",
|
|
|
|
strip_prefix = "bazel-tools-ad2d84beb4e577bda323c8517533b046ed34e6ad",
|
2023-03-30 03:41:56 -04:00
|
|
|
urls = [
|
2024-05-10 05:31:02 -04:00
|
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/c5c2bb097ef427ab021f522828167c6d85c3e9077763629343282c51dbde03db",
|
|
|
|
"https://github.com/ash2k/bazel-tools/archive/ad2d84beb4e577bda323c8517533b046ed34e6ad.tar.gz",
|
2023-03-30 03:41:56 -04:00
|
|
|
],
|
|
|
|
type = "tar.gz",
|
2023-03-13 13:33:31 -04:00
|
|
|
)
|