v0.8.0-rc8
Pre-release
Pre-release
·
102 commits
to main
since this release
1433
2410
Using Bzlmod with Bazel 6:
Add to your MODULE.bazel file:
bazel_dep(name = "bazeldnf", version = "0.8.0-rc8")This will register a prebuilt bazeldnf
Using WORKSPACE
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazeldnf",
sha256 = "0ce9340d6351fa289a0b479bbc49a5af42fd971a02b116c8b14cdd8cc56d0676",
strip_prefix = "bazeldnf-v0.8.0-rc8",
url = "https://github.com/bookingcom/bazeldnf/releases/download/v0.8.0-rc8/bazeldnf-v0.8.0-rc8.tar.gz",
)
load(
"@bazeldnf//bazeldnf:repositories.bzl",
"bazeldnf_dependencies",
)
bazeldnf_dependencies()