| """Our "development" dependencies |
| |
| Users should *not* need to install these. If users see a load() |
| statement from these, that's a bug in our distribution. |
| """ |
| |
| load("@bazel_tools//tools/build_defs/repo:http.bzl", _http_archive = "http_archive") |
| load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") |
| load("//lib:repositories.bzl", "register_jq_toolchains", "register_yq_toolchains") |
| |
| # Don't wrap later calls with maybe() as that prevents renovate from parsing our deps |
| def http_archive(name, **kwargs): |
| maybe(_http_archive, name = name, **kwargs) |
| |
| # buildifier: disable=unnamed-macro |
| def bazel_lib_internal_deps(): |
| "Fetch deps needed for local development" |
| http_archive( |
| name = "io_bazel_rules_go", |
| sha256 = "099a9fb96a376ccbbb7d291ed4ecbdfd42f6bc822ab77ae6f1b5cb9e914e94fa", |
| urls = [ |
| "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.35.0/rules_go-v0.35.0.zip", |
| "https://github.com/bazelbuild/rules_go/releases/download/v0.35.0/rules_go-v0.35.0.zip", |
| ], |
| ) |
| |
| http_archive( |
| name = "bazel_gazelle", |
| sha256 = "501deb3d5695ab658e82f6f6f549ba681ea3ca2a5fb7911154b5aa45596183fa", |
| urls = [ |
| "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.26.0/bazel-gazelle-v0.26.0.tar.gz", |
| "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.26.0/bazel-gazelle-v0.26.0.tar.gz", |
| ], |
| ) |
| |
| # Override bazel_skylib distribution to fetch sources instead |
| # so that the gazelle extension is included |
| # see https://github.com/bazelbuild/bazel-skylib/issues/250 |
| http_archive( |
| name = "bazel_skylib", |
| sha256 = "3b620033ca48fcd6f5ef2ac85e0f6ec5639605fa2f627968490e52fc91a9932f", |
| strip_prefix = "bazel-skylib-1.3.0", |
| urls = ["https://github.com/bazelbuild/bazel-skylib/archive/refs/tags/1.3.0.tar.gz"], |
| ) |
| |
| http_archive( |
| name = "io_bazel_stardoc", |
| sha256 = "aa814dae0ac400bbab2e8881f9915c6f47c49664bf087c409a15f90438d2c23e", |
| urls = [ |
| "https://mirror.bazel.build/github.com/bazelbuild/stardoc/releases/download/0.5.1/stardoc-0.5.1.tar.gz", |
| "https://github.com/bazelbuild/stardoc/releases/download/0.5.1/stardoc-0.5.1.tar.gz", |
| ], |
| ) |
| |
| # Register toolchains for tests |
| register_jq_toolchains() |
| register_yq_toolchains() |