Macros for loading dependencies and registering toolchains
Load dependencies required by aspect rules
Register all bazel-lib toolchains at their default versions.
To be more selective about which toolchains and versions to register, call the individual toolchain registration macros.
Registers copy_directory toolchain and repositories
PARAMETERS
| Name | Description | Default Value |
|---|---|---|
| name | override the prefix for the generated toolchain repositories | “copy_directory” |
| register | whether to call through to native.register_toolchains. Should be True for WORKSPACE users, but false when used under bzlmod extension | True |
Registers copy_to_directory toolchain and repositories
PARAMETERS
| Name | Description | Default Value |
|---|---|---|
| name | override the prefix for the generated toolchain repositories | “copy_to_directory” |
| register | whether to call through to native.register_toolchains. Should be True for WORKSPACE users, but false when used under bzlmod extension | True |
Registers coreutils toolchain and repositories
PARAMETERS
| Name | Description | Default Value |
|---|---|---|
| name | override the prefix for the generated toolchain repositories | “coreutils” |
| version | the version of coreutils to execute (see https://github.com/uutils/coreutils/releases) | “0.0.23” |
| register | whether to call through to native.register_toolchains. Should be True for WORKSPACE users, but false when used under bzlmod extension | True |
Registers expand_template toolchain and repositories
PARAMETERS
| Name | Description | Default Value |
|---|---|---|
| name | override the prefix for the generated toolchain repositories | “expand_template” |
| register | whether to call through to native.register_toolchains. Should be True for WORKSPACE users, but false when used under bzlmod extension | True |
Registers jq toolchain and repositories
PARAMETERS
| Name | Description | Default Value |
|---|---|---|
| name | override the prefix for the generated toolchain repositories | “jq” |
| version | the version of jq to execute (see https://github.com/stedolan/jq/releases) | “1.7” |
| register | whether to call through to native.register_toolchains. Should be True for WORKSPACE users, but false when used under bzlmod extension | True |
Registers bsdtar toolchain and repositories
PARAMETERS
| Name | Description | Default Value |
|---|---|---|
| name | override the prefix for the generated toolchain repositories | “bsd_tar” |
| register | whether to call through to native.register_toolchains. Should be True for WORKSPACE users, but false when used under bzlmod extension | True |
Registers yq toolchain and repositories
PARAMETERS
| Name | Description | Default Value |
|---|---|---|
| name | override the prefix for the generated toolchain repositories | “yq” |
| version | the version of yq to execute (see https://github.com/mikefarah/yq/releases) | “4.25.2” |
| register | whether to call through to native.register_toolchains. Should be True for WORKSPACE users, but false when used under bzlmod extension | True |