2021-11-08 14:20:26 +00:00
|
|
|
"""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")
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
|
2021-12-09 00:47:45 +00:00
|
|
|
load("//lib:repositories.bzl", "register_jq_toolchains")
|
2021-11-08 14:20:26 +00:00
|
|
|
|
2021-12-09 00:47:45 +00:00
|
|
|
# buildifier: disable=unnamed-macro
|
2021-11-08 14:40:36 +00:00
|
|
|
def bazel_lib_internal_deps():
|
2021-11-08 14:20:26 +00:00
|
|
|
"Fetch deps needed for local development"
|
|
|
|
maybe(
|
|
|
|
http_archive,
|
|
|
|
name = "build_bazel_integration_testing",
|
|
|
|
urls = [
|
|
|
|
"https://github.com/bazelbuild/bazel-integration-testing/archive/165440b2dbda885f8d1ccb8d0f417e6cf8c54f17.zip",
|
|
|
|
],
|
|
|
|
strip_prefix = "bazel-integration-testing-165440b2dbda885f8d1ccb8d0f417e6cf8c54f17",
|
|
|
|
sha256 = "2401b1369ef44cc42f91dc94443ef491208dbd06da1e1e10b702d8c189f098e3",
|
|
|
|
)
|
|
|
|
|
|
|
|
maybe(
|
|
|
|
http_archive,
|
|
|
|
name = "io_bazel_rules_go",
|
|
|
|
sha256 = "2b1641428dff9018f9e85c0384f03ec6c10660d935b750e3fa1492a281a53b0f",
|
|
|
|
urls = [
|
|
|
|
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.29.0/rules_go-v0.29.0.zip",
|
|
|
|
"https://github.com/bazelbuild/rules_go/releases/download/v0.29.0/rules_go-v0.29.0.zip",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
maybe(
|
|
|
|
http_archive,
|
|
|
|
name = "bazel_gazelle",
|
|
|
|
sha256 = "de69a09dc70417580aabf20a28619bb3ef60d038470c7cf8442fafcf627c21cb",
|
|
|
|
urls = [
|
|
|
|
"https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.24.0/bazel-gazelle-v0.24.0.tar.gz",
|
|
|
|
"https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.24.0/bazel-gazelle-v0.24.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
|
|
|
|
maybe(
|
|
|
|
http_archive,
|
|
|
|
name = "bazel_skylib",
|
|
|
|
sha256 = "07b4117379dde7ab382345c3b0f5edfc6b7cff6c93756eac63da121e0bbcc5de",
|
|
|
|
strip_prefix = "bazel-skylib-1.1.1",
|
|
|
|
urls = [
|
|
|
|
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/archive/1.1.1.tar.gz",
|
2022-02-11 16:03:34 +00:00
|
|
|
"https://github.com/bazelbuild/bazel-skylib/archive/refs/tags/1.1.1.tar.gz",
|
2021-11-08 14:20:26 +00:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
maybe(
|
|
|
|
http_archive,
|
|
|
|
name = "io_bazel_stardoc",
|
|
|
|
sha256 = "c9794dcc8026a30ff67cf7cf91ebe245ca294b20b071845d12c192afe243ad72",
|
|
|
|
urls = [
|
|
|
|
"https://mirror.bazel.build/github.com/bazelbuild/stardoc/releases/download/0.5.0/stardoc-0.5.0.tar.gz",
|
|
|
|
"https://github.com/bazelbuild/stardoc/releases/download/0.5.0/stardoc-0.5.0.tar.gz",
|
|
|
|
],
|
|
|
|
)
|
2021-12-09 00:47:45 +00:00
|
|
|
|
|
|
|
# Register toolchains for tests
|
|
|
|
register_jq_toolchains(version = "1.6")
|