2022-04-27 04:07:17 +00:00
|
|
|
"Module extensions for use with bzlmod"
|
|
|
|
|
|
|
|
load(
|
|
|
|
"@aspect_bazel_lib//lib:repositories.bzl",
|
2023-01-17 01:19:13 +00:00
|
|
|
"register_copy_directory_toolchains",
|
2023-01-07 19:26:27 +00:00
|
|
|
"register_copy_to_directory_toolchains",
|
2022-04-27 04:07:17 +00:00
|
|
|
"register_jq_toolchains",
|
|
|
|
"register_yq_toolchains",
|
|
|
|
)
|
2023-02-19 04:08:12 +00:00
|
|
|
load("//lib/private:host_repo.bzl", "host_repo")
|
2022-04-27 04:07:17 +00:00
|
|
|
|
|
|
|
def _toolchain_extension(_):
|
2023-01-17 01:19:13 +00:00
|
|
|
register_copy_directory_toolchains(register = False)
|
2023-01-07 19:26:27 +00:00
|
|
|
register_copy_to_directory_toolchains(register = False)
|
2023-01-17 03:37:36 +00:00
|
|
|
register_jq_toolchains(register = False)
|
|
|
|
register_yq_toolchains(register = False)
|
2023-02-19 04:08:12 +00:00
|
|
|
host_repo(name = "aspect_bazel_lib_host")
|
2022-04-27 04:07:17 +00:00
|
|
|
|
|
|
|
# TODO: some way for users to control repo name/version of the tools installed
|
|
|
|
ext = module_extension(
|
|
|
|
implementation = _toolchain_extension,
|
|
|
|
)
|