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-05-10 05:31:16 -04:00
|
|
|
sha256 = "2a555348d7f8593fca2bf3fc6ce53c5d62929de81b6c292e23f16c557c0ae45a",
|
|
|
|
strip_prefix = "rules_nixpkgs-0.11.1",
|
2023-09-06 07:42:55 -04:00
|
|
|
urls = [
|
2024-05-10 05:31:16 -04:00
|
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/2a555348d7f8593fca2bf3fc6ce53c5d62929de81b6c292e23f16c557c0ae45a",
|
|
|
|
"https://github.com/tweag/rules_nixpkgs/releases/download/v0.11.1/rules_nixpkgs-0.11.1.tar.gz",
|
2023-09-06 07:42:55 -04:00
|
|
|
],
|
|
|
|
type = "tar.gz",
|
|
|
|
)
|