v0.99.2-rc0
Pre-release
Pre-release
·
15 commits
to main
since this release
1512
2751
Using Bzlmod with Bazel 6:
Add to your MODULE.bazel file:
bazel_dep(name = "bazeldnf", version = "0.99.2-rc0")This will register a prebuilt bazeldnf
Using WORKSPACE
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazeldnf",
sha256 = "fb4865c117530a75a55e451857a84581d4247d15d4b9e806b4a2dea32ff2d236",
strip_prefix = "bazeldnf-v0.99.2-rc0",
url = "https://github.com/rmohr/bazeldnf/releases/download/v0.99.2-rc0/bazeldnf-v0.99.2-rc0.tar.gz",
)
load(
"@bazeldnf//bazeldnf:repositories.bzl",
"bazeldnf_dependencies",
)
bazeldnf_dependencies()