forked from tink-crypto/tink
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtink_go_deps.bzl
31 lines (27 loc) · 1.2 KB
/
tink_go_deps.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""
Dependencies of Go Tink.
"""
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
def tink_go_deps():
""" Loads dependencies of Go Tink.
"""
if not native.existing_rule("io_bazel_rules_go"):
# Release from 2020-09-22
http_archive(
name = "io_bazel_rules_go",
sha256 = "b725e6497741d7fc2d55fcc29a276627d10e43fa5d0bb692692890ae30d98d00",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.3/rules_go-v0.24.3.tar.gz",
"https://github.com/bazelbuild/rules_go/releases/download/v0.24.3/rules_go-v0.24.3.tar.gz",
],
)
if not native.existing_rule("bazel_gazelle"):
# Release from 2020-09-22
http_archive(
name = "bazel_gazelle",
sha256 = "72d339ff874a382f819aaea80669be049069f502d6c726a07759fdca99653c48",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.22.1/bazel-gazelle-v0.22.1.tar.gz",
"https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.22.1/bazel-gazelle-v0.22.1.tar.gz",
],
)