forked from rabbitmq/ra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE.bazel
More file actions
55 lines (46 loc) · 1.5 KB
/
Copy pathWORKSPACE.bazel
File metadata and controls
55 lines (46 loc) · 1.5 KB
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
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazel-erlang",
sha256 = "422a9222522216f59a01703a13f578c601d6bddf5617bee8da3c43e3b299fc4e",
strip_prefix = "bazel-erlang-1.1.0",
urls = ["https://github.com/rabbitmq/bazel-erlang/archive/refs/tags/1.1.0.zip"],
)
load("@bazel-erlang//:bazel_erlang.bzl", "bazel_erlang_deps")
bazel_erlang_deps()
load("@bazel-erlang//:github.bzl", "github_bazel_erlang_lib")
load("@bazel-erlang//:hex_pm.bzl", "hex_pm_bazel_erlang_lib")
hex_pm_bazel_erlang_lib(
name = "aten",
sha256 = "8b623c8be27b59a911d16ab0af41777b504c147bc0d60a29015fab58321c04b0",
version = "0.5.7",
)
hex_pm_bazel_erlang_lib(
name = "gen_batch_server",
sha256 = "ff6b0ed0f7be945f38b94ddd4784d128f35ff029c34dad6ca0c6cb17ab7bc9c4",
version = "0.8.4",
)
http_archive(
name = "inet_tcp_proxy",
build_file_content = """load("@bazel-erlang//:bazel_erlang_lib.bzl", "erlang_lib")
erlang_lib(
app_name = "inet_tcp_proxy_dist",
app_version = "0.1.0",
app_description = "Erlang distribution proxy to simulate network failures",
app_module = "inet_tcp_proxy_dist_app",
)
""",
strip_prefix = "inet_tcp_proxy-master",
urls = ["https://github.com/rabbitmq/inet_tcp_proxy/archive/master.zip"],
)
github_bazel_erlang_lib(
name = "meck",
org = "eproxus",
)
github_bazel_erlang_lib(
name = "proper",
first_srcs = [
"src/vararg.erl",
"src/proper_target.erl",
],
org = "manopapad",
)