2023-09-06 07:42:55 -04:00
|
|
|
"""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",
|
2024-10-11 10:40:35 -04:00
|
|
|
sha256 = "f2c927815c18c088f02ff81caf9903f9c0b2596ac6e6bd40534bc299af9dc0d7",
|
|
|
|
strip_prefix = "rules_nixpkgs-705ee3b26cf49e990cddbbe6f60510fa46d50904",
|
2023-09-06 07:42:55 -04:00
|
|
|
urls = [
|
2024-10-11 10:40:35 -04:00
|
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/f2c927815c18c088f02ff81caf9903f9c0b2596ac6e6bd40534bc299af9dc0d7",
|
|
|
|
"https://github.com/tweag/rules_nixpkgs/archive/705ee3b26cf49e990cddbbe6f60510fa46d50904.tar.gz",
|
2023-09-06 07:42:55 -04:00
|
|
|
],
|
|
|
|
type = "tar.gz",
|
|
|
|
)
|