1"""Bzlmod extensions""" 2 3load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file") 4 5def _non_module_dependencies_impl(_ctx): 6 """Non module dependencies""" 7 http_file( 8 name = "bazel_linux_x86_64", 9 downloaded_file_path = "bazel", 10 executable = True, 11 sha256 = "e78fc3394deae5408d6f49a15c7b1e615901969ecf6e50d55ef899996b0b8458", 12 urls = [ 13 "https://github.com/bazelbuild/bazel/releases/download/6.3.2/bazel-6.3.2-linux-x86_64", 14 ], 15 ) 16 17non_module_dependencies = module_extension( 18 implementation = _non_module_dependencies_impl, 19) 20