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-13 12:33:49 -04:00
|
|
|
strip_prefix = "buildtools-6.1.2",
|
2023-01-30 11:15:59 -05:00
|
|
|
urls = [
|
2023-06-13 12:33:49 -04:00
|
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/977a0bd4593c8d4c8f45e056d181c35e48aa01ad4f8090bdb84f78dca42f47dc",
|
|
|
|
"https://github.com/bazelbuild/buildtools/archive/refs/tags/v6.1.2.tar.gz",
|
2023-01-30 11:15:59 -05:00
|
|
|
],
|
2023-03-30 03:41:56 -04:00
|
|
|
type = "tar.gz",
|
2023-06-13 12:33:49 -04:00
|
|
|
sha256 = "977a0bd4593c8d4c8f45e056d181c35e48aa01ad4f8090bdb84f78dca42f47dc",
|
2023-01-30 11:15:59 -05:00
|
|
|
)
|