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-08-08 09:43:52 -04:00
|
|
|
sha256 = "1adb04dc0416915fef427757f4272c4f7dacefeceeefc50f683aec7f7e9b787a",
|
|
|
|
strip_prefix = "rules_nixpkgs-0.12.0",
|
2023-09-06 07:42:55 -04:00
|
|
|
urls = [
|
2024-08-08 09:43:52 -04:00
|
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/1adb04dc0416915fef427757f4272c4f7dacefeceeefc50f683aec7f7e9b787a",
|
|
|
|
"https://github.com/tweag/rules_nixpkgs/releases/download/v0.12.0/rules_nixpkgs-0.12.0.tar.gz",
|
2023-09-06 07:42:55 -04:00
|
|
|
],
|
|
|
|
type = "tar.gz",
|
|
|
|
)
|