mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
16 lines
644 B
Python
16 lines
644 B
Python
"""multirun_deps"""
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
def multirun_deps():
|
|
http_archive(
|
|
name = "com_github_ash2k_bazel_tools",
|
|
sha256 = "c5c2bb097ef427ab021f522828167c6d85c3e9077763629343282c51dbde03db",
|
|
strip_prefix = "bazel-tools-ad2d84beb4e577bda323c8517533b046ed34e6ad",
|
|
urls = [
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/c5c2bb097ef427ab021f522828167c6d85c3e9077763629343282c51dbde03db",
|
|
"https://github.com/ash2k/bazel-tools/archive/ad2d84beb4e577bda323c8517533b046ed34e6ad.tar.gz",
|
|
],
|
|
type = "tar.gz",
|
|
)
|