Skip to content

v0.7.0-alpha2

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 10 Feb 08:42
· 209 commits to main since this release

1209
2105

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "bazeldnf", version = "0.7.0-alpha2")

This will register a prebuilt bazeldnf

Using WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "bazeldnf",
    sha256 = "dabca62342d7e4ad6e60d3dcdb1c2f1df835111c8f82195185f0534070156533",
    strip_prefix = "bazeldnf-v0.7.0-alpha2",
    url = "https://github.com/rmohr/bazeldnf/releases/download/v0.7.0-alpha2/bazeldnf-v0.7.0-alpha2.tar.gz",
)

load(
    "@bazeldnf//bazeldnf:repositories.bzl",
    "bazeldnf_dependencies",
)

bazeldnf_dependencies()