...
1workspace(
2 name = "gazelle_kustomize_test",
3)
4
5load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
6
7http_archive(
8 name = "io_bazel_rules_go",
9 sha256 = "278b7ff5a826f3dc10f04feaf0b70d48b68748ccd512d7f98bf442077f043fe3",
10 urls = [
11 "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.41.0/rules_go-v0.41.0.zip",
12 "https://github.com/bazelbuild/rules_go/releases/download/v0.41.0/rules_go-v0.41.0.zip",
13 ],
14)
15
16http_archive(
17 name = "io_bazel_rules_docker",
18 sha256 = "7e0d45a79512cc8f0ef6274761eddba15cd8b1750828a319483dfad6596e0ea1",
19 strip_prefix = "rules_docker-fc729d85f284225cfc0b8c6d1d838f4b3e037749",
20 urls = ["https://github.com/bazelbuild/rules_docker/archive/fc729d85f284225cfc0b8c6d1d838f4b3e037749.zip"],
21)
22
23http_archive(
24 name = "rules_pkg",
25 sha256 = "eea0f59c28a9241156a47d7a8e32db9122f3d50b505fae0f33de6ce4d9b61834",
26 urls = [
27 "https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/0.8.0/rules_pkg-0.8.0.tar.gz",
28 "https://github.com/bazelbuild/rules_pkg/releases/download/0.8.0/rules_pkg-0.8.0.tar.gz",
29 ],
30)
31
32http_archive(
33 name = "aspect_bazel_lib",
34 sha256 = "4d6010ca5e3bb4d7045b071205afa8db06ec11eb24de3f023d74d77cca765f66",
35 strip_prefix = "bazel-lib-1.39.0",
36 url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.39.0/bazel-lib-v1.39.0.tar.gz",
37)
38
39http_archive(
40 name = "bazel_gazelle",
41 sha256 = "d3fa66a39028e97d76f9e2db8f1b0c11c099e8e01bf363a923074784e451f809",
42 urls = [
43 "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.33.0/bazel-gazelle-v0.33.0.tar.gz",
44 "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.33.0/bazel-gazelle-v0.33.0.tar.gz",
45 ],
46)
View as plain text