-
Notifications
You must be signed in to change notification settings - Fork 160
/
tool_deps.bzl
58 lines (49 loc) · 1.81 KB
/
tool_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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
load("@bazel_gazelle//:deps.bzl", "go_repository")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
def tool_deps():
go_repository(
name = "com_github_jeanmertz_lll",
commit = "c7683829ec0c1f892b2d0468356597573afafb03",
importpath = "github.com/JeanMertz/lll",
)
go_repository(
name = "com_github_alexflint_go_arg",
commit = "f7c0423bd11ee80ab81d25c6d46f492998af8547",
importpath = "github.com/alexflint/go-arg",
)
go_repository(
name = "com_github_alexflint_go_scalar",
commit = "e80c3b7ed292b052c7083b6fd7154a8422c33f65",
importpath = "github.com/alexflint/go-scalar",
)
go_repository(
name = "com_github_client9_misspell",
commit = "c0b55c8239520f6b5aa15a0207ca8b28027ba49e",
importpath = "github.com/client9/misspell",
)
go_repository(
name = "com_github_kisielk_gotool",
commit = "80517062f582ea3340cd4baf70e86d539ae7d84d",
importpath = "github.com/kisielk/gotool",
)
go_repository(
name = "com_github_oncilla_gochecks",
commit = "954a3ef2d56471a40cc0c6fcb86e1e9a3b21949e",
importpath = "github.com/oncilla/gochecks",
)
go_repository(
name = "com_github_oncilla_ineffassign",
commit = "198c6a326229fbe8a5803f701ea9da06bc8c1776",
importpath = "github.com/Oncilla/ineffassign",
)
go_repository(
name = "com_github_pavius_impi",
commit = "c1cbdcb8df2b23af8530360d87ac9a7fabc48618",
importpath = "github.com/pavius/impi",
)
git_repository(
name = "com_github_ash2k_bazel_tools",
commit = "1975881d802316fd94078b15a4f6ba96ac3650ae",
remote = "https://github.com/ash2k/bazel-tools.git",
shallow_since = "1622973143 +1000",
)