mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-22 21:31:14 -05:00
228aa18a2c
* deps: update bazel (core) * bazel: use non-release rules_nixpkgs * Update bazel module lock file Signed-off-by: Daniel Weiße <dw@edgeless.systems> * bazel: resolve patch conflict after upgrading gazelle The generated BUILD file has changed, so our patch needs to be adapted. * deps: tidy all modules --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> Co-authored-by: Daniel Weiße <dw@edgeless.systems> Co-authored-by: Markus Rudy <mr@edgeless.systems> Co-authored-by: edgelessci <edgelessci@users.noreply.github.com>
16 lines
663 B
Python
16 lines
663 B
Python
"""Bazel rules for building OCI images"""
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
def nixpkgs_deps():
|
|
http_archive(
|
|
name = "io_tweag_rules_nixpkgs",
|
|
sha256 = "f2c927815c18c088f02ff81caf9903f9c0b2596ac6e6bd40534bc299af9dc0d7",
|
|
strip_prefix = "rules_nixpkgs-705ee3b26cf49e990cddbbe6f60510fa46d50904",
|
|
urls = [
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/f2c927815c18c088f02ff81caf9903f9c0b2596ac6e6bd40534bc299af9dc0d7",
|
|
"https://github.com/tweag/rules_nixpkgs/archive/705ee3b26cf49e990cddbbe6f60510fa46d50904.tar.gz",
|
|
],
|
|
type = "tar.gz",
|
|
)
|