constellation/bazel/toolchains/buildifier_deps.bzl
renovate[bot] 18da9b8128
deps: update dependency com_github_bazelbuild_buildtools to v4.2.5 (#1858)
* deps: update dependency com_github_bazelbuild_buildtools to v4.2.5

* deps: tidy all modules

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: edgelessci <edgelessci@users.noreply.github.com>
Co-authored-by: malt3 <mp@edgeless.systems>
2023-06-02 11:56:14 +02:00

16 lines
607 B
Python

"""buildifier repository rules"""
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
def buildifier_deps():
http_archive(
name = "com_github_bazelbuild_buildtools",
strip_prefix = "buildtools-4.2.5",
urls = [
"https://cdn.confidential.cloud/constellation/cas/sha256/d368c47bbfc055010f118efb2962987475418737e901f7782d2a966d1dc80296",
"https://github.com/bazelbuild/buildtools/archive/refs/tags/4.2.5.tar.gz",
],
type = "tar.gz",
sha256 = "d368c47bbfc055010f118efb2962987475418737e901f7782d2a966d1dc80296",
)