2023-01-30 11:15:59 -05:00
|
|
|
"""buildifier repository rules"""
|
|
|
|
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
|
|
|
|
def buildifier_deps():
|
|
|
|
http_archive(
|
|
|
|
name = "com_github_bazelbuild_buildtools",
|
2023-06-02 05:56:14 -04:00
|
|
|
strip_prefix = "buildtools-4.2.5",
|
2023-01-30 11:15:59 -05:00
|
|
|
urls = [
|
2023-06-02 05:56:14 -04:00
|
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/d368c47bbfc055010f118efb2962987475418737e901f7782d2a966d1dc80296",
|
|
|
|
"https://github.com/bazelbuild/buildtools/archive/refs/tags/4.2.5.tar.gz",
|
2023-01-30 11:15:59 -05:00
|
|
|
],
|
2023-03-30 03:41:56 -04:00
|
|
|
type = "tar.gz",
|
2023-06-02 05:56:14 -04:00
|
|
|
sha256 = "d368c47bbfc055010f118efb2962987475418737e901f7782d2a966d1dc80296",
|
2023-01-30 11:15:59 -05:00
|
|
|
)
|