-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMODULE.bazel
35 lines (28 loc) · 861 Bytes
/
MODULE.bazel
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
"arr4n/specops"
module(
name = "arr4n_specops",
version = "1.0.0-alpha",
)
bazel_dep(name = "aspect_bazel_lib", version = "2.5.1")
bazel_dep(name = "rules_go", version = "0.48.0")
bazel_dep(name = "gazelle", version = "0.37.0")
go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk")
go_sdk.download(version = "1.21.0")
go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps")
go_deps.from_file(go_mod = "//:go.mod")
use_repo(
go_deps,
"com_github_ethereum_go_ethereum",
"com_github_gdamore_tcell_v2",
"com_github_google_go_cmp",
"com_github_holiman_uint256",
"com_github_rivo_tview",
"com_github_spf13_cobra",
"org_golang_x_sync",
)
go_deps.module_override(
patches = [
"//internal/patches:com_github_ethereum_go_ethereum.patch",
],
path = "github.com/ethereum/go-ethereum",
)