forked from cpisciotta/xcbeautify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
38 lines (31 loc) · 1.08 KB
/
WORKSPACE
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
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
git_repository(
name = "build_bazel_rules_swift",
commit = "410d8ed546e3e43dd06f01cb3916ede6632a6d71",
remote = "https://github.com/bazelbuild/rules_swift.git",
)
load(
"@build_bazel_rules_swift//swift:repositories.bzl",
"swift_rules_dependencies",
)
swift_rules_dependencies()
load(
"@com_google_protobuf//:protobuf_deps.bzl",
"protobuf_deps",
)
protobuf_deps()
http_archive(
name = "Colorizer",
build_file = "//external:External.BUILD",
sha256 = "267aff5c4a6a7c7f329ca96b2d5683f17098b3cee859e01e96a77e2d08805750",
strip_prefix = "Colorizer-0.2.1",
url = "https://github.com/getGuaka/Colorizer/archive/0.2.1.zip",
)
http_archive(
name = "ArgumentParser",
build_file = "//external:External.BUILD",
sha256 = "11753416686351748d61acfa86751335a7eb9293d96fc34bbef845884b4e1035",
strip_prefix = "swift-argument-parser-1.2.2",
url = "https://github.com/apple/swift-argument-parser/archive/1.2.2.zip",
)