Important
--experimental_cc_implementation_deps
MUST be enabled, see [implementation_deps
].
Add the following to your WORKSPACE
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
_VERSION_TAG = "x.y.z"
maybe(
http_archive,
name = "tree-sitter-bazel",
urls = ["https://github.com/zadlg/tree-sitter-bazel/archive/refs/tags/v{version}.tar.gz".format(
version = _VERSION_TAG,
),
sha256 = "", # Set the SHA-256 sum of the archive.
strip_prefix = "tree-sitter-bazel-{version}".format(
version = _VERSION_TAG,
),
)
# Fetches tree-sitter dependencies (bazel_skylib)
load(":repositories.bzl", "tree_sitter_repositories")
tree_sitter_repositories()
# Fetches the source code of tree-sitter.
load(":repositories.bzl", "tree_sitter_sources")
tree_sitter_sources()
# Loads tree-sitter dependencies (bazel_skylib)
load(":deps.bzl", "tree_sitter_dependencies")
tree_sitter_dependencies()
tree-sitter-bazel
is available in Bazel Central Registry.
Ensure that common --enable_bzlmod
is set in your .bazelrc
file.
(See [bazel_dep
]).
Add the following to your MODULE.bazel
file:
_VERSION_TAG = "x.y.z"
bazel_dep(name = "tree-sitter-bazel", version = _VERSION_TAG)