Skip to content

v0.99.1

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 02 Sep 23:07
· 90 commits to main since this release
439856a

1478
2410

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "bazeldnf", version = "0.99.1")

This will register a prebuilt bazeldnf

Using WORKSPACE

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

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

bazeldnf_dependencies()

What's Changed

New Contributors

Full Changelog: v0.5.9...v0.99.1