mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-16 09:57:07 -05:00
26 lines
1.1 KiB
Python
26 lines
1.1 KiB
Python
|
"""Go toolchain dependencies for Bazel.
|
||
|
|
||
|
Defines hermetic go toolchains and rules to build and test go code.
|
||
|
Gazelle is a build file generator for Bazel projects written in Go.
|
||
|
"""
|
||
|
|
||
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
||
|
|
||
|
def go_deps():
|
||
|
http_archive(
|
||
|
name = "io_bazel_rules_go",
|
||
|
sha256 = "56d8c5a5c91e1af73eca71a6fab2ced959b67c86d12ba37feedb0a2dfea441a6",
|
||
|
urls = [
|
||
|
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.37.0/rules_go-v0.37.0.zip",
|
||
|
"https://github.com/bazelbuild/rules_go/releases/download/v0.37.0/rules_go-v0.37.0.zip",
|
||
|
],
|
||
|
)
|
||
|
http_archive(
|
||
|
name = "bazel_gazelle",
|
||
|
sha256 = "ecba0f04f96b4960a5b250c8e8eeec42281035970aa8852dda73098274d14a1d",
|
||
|
urls = [
|
||
|
"https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.29.0/bazel-gazelle-v0.29.0.tar.gz",
|
||
|
"https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.29.0/bazel-gazelle-v0.29.0.tar.gz",
|
||
|
],
|
||
|
)
|