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",
|
2024-05-10 05:29:38 -04:00
|
|
|
strip_prefix = "buildtools-7.1.1",
|
2023-01-30 11:15:59 -05:00
|
|
|
urls = [
|
2024-05-10 05:29:38 -04:00
|
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/60a9025072ae237f325d0e7b661e1685f34922c29883888c2d06f5789462b939",
|
|
|
|
"https://github.com/bazelbuild/buildtools/archive/refs/tags/v7.1.1.tar.gz",
|
2023-01-30 11:15:59 -05:00
|
|
|
],
|
2023-03-30 03:41:56 -04:00
|
|
|
type = "tar.gz",
|
2024-05-10 05:29:38 -04:00
|
|
|
sha256 = "60a9025072ae237f325d0e7b661e1685f34922c29883888c2d06f5789462b939",
|
2023-01-30 11:15:59 -05:00
|
|
|
)
|