mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
d7b63bdc37
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
15 lines
589 B
Python
15 lines
589 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 = "c6aecb167e41e923aeaa629443dabb7dc37462d96db928c3e91e2b019160e710",
|
|
urls = [
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/c6aecb167e41e923aeaa629443dabb7dc37462d96db928c3e91e2b019160e710",
|
|
"https://github.com/rmohr/bazeldnf/releases/download/v0.5.7/bazeldnf-v0.5.7.tar.gz",
|
|
],
|
|
type = "tar.gz",
|
|
)
|