constellation/bazel/toolchains/dnf_deps.bzl
Paul Meyer 9b3af5af76 bazel: move toolchains into bazel folder
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2023-03-14 03:43:51 -04:00

14 lines
512 B
Python

"""bazeldnf is a Bazel extension to manage RPM packages for use within bazel"""
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
def dnf_deps():
http_archive(
name = "bazeldnf",
sha256 = "97c43034d55af16061adcae26e69588bc2e164cbc289a140a3bb5b2125f0109d",
strip_prefix = "bazeldnf-32db3eee870531104529711782da1aa4eca7dacf",
urls = [
"https://github.com/rmohr/bazeldnf/archive/32db3eee870531104529711782da1aa4eca7dacf.tar.gz",
],
)