mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-14 10:17:14 +02:00
44 lines
1.5 KiB
Plaintext
44 lines
1.5 KiB
Plaintext
module(name = "jsonnet_go", version = "0.0.0")
|
|
|
|
http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
# NB: update_cpp_jsonnet.sh looks for these.
|
|
CPP_JSONNET_SHA256 = "e7d14d8ad65dc334b9a9f3bd1c542a82b3b80029860a8d78fd829b23d0e9845b"
|
|
CPP_JSONNET_GITHASH = "5a4e8e34cc1fe841bdebb983646b9b9ae8fa8ca4"
|
|
CPP_JSONNET_RELEASE_VERSION = ""
|
|
|
|
CPP_JSONNET_STRIP_PREFIX = (
|
|
"jsonnet-" + (
|
|
CPP_JSONNET_RELEASE_VERSION if CPP_JSONNET_RELEASE_VERSION else CPP_JSONNET_GITHASH
|
|
)
|
|
)
|
|
CPP_JSONNET_URL = (
|
|
"https://github.com/google/jsonnet/releases/download/%s/jsonnet-%s.tar.gz" % (
|
|
CPP_JSONNET_RELEASE_VERSION,
|
|
CPP_JSONNET_RELEASE_VERSION,
|
|
) if CPP_JSONNET_RELEASE_VERSION else "https://github.com/google/jsonnet/archive/%s.tar.gz" % CPP_JSONNET_GITHASH
|
|
)
|
|
|
|
# We don't use a normal bazel_dep reference for the cpp_jsonnet module,
|
|
# because we want to pin to the specific jsonnet commit (which might not
|
|
# even exactly match a released version).
|
|
http_archive(
|
|
name = "cpp_jsonnet",
|
|
sha256 = CPP_JSONNET_SHA256,
|
|
strip_prefix = CPP_JSONNET_STRIP_PREFIX,
|
|
urls = [CPP_JSONNET_URL],
|
|
)
|
|
|
|
bazel_dep(name = "gazelle", version = "0.41.0", repo_name = "bazel_gazelle")
|
|
bazel_dep(name = "rules_go", version = "0.48.0", repo_name = "io_bazel_rules_go")
|
|
|
|
go_deps = use_extension("@bazel_gazelle//:extensions.bzl", "go_deps")
|
|
go_deps.from_file(go_mod = "@jsonnet_go//:go.mod")
|
|
use_repo(
|
|
go_deps,
|
|
"com_github_fatih_color",
|
|
"com_github_sergi_go_diff",
|
|
"io_k8s_sigs_yaml",
|
|
"org_golang_x_crypto",
|
|
)
|