-
Notifications
You must be signed in to change notification settings - Fork 1
/
WORKSPACE
61 lines (50 loc) · 1.63 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
workspace(name = "ninja_ob1_snuifw")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
git_repository(
name = "com_github_nelhage_rules_boost",
commit = "6d6fd834281cb8f8e758dd9ad76df86304bf1869",
remote = "https://github.com/nelhage/rules_boost",
shallow_since = "1543903644 -0800",
)
http_archive(
name = "boost",
build_file = "@com_github_nelhage_rules_boost//:BUILD.boost",
sha256 = "882b48708d211a5f48e60b0124cf5863c1534cd544ecd0664bb534a4b5d506e9",
strip_prefix = "boost_1_70_0",
urls = [
"https://%s.dl.sourceforge.net/project/boost/boost/1.70.0/boost_1_70_0.tar.gz" % m
for m in [
"phoenixnap",
"newcontinuum",
"cfhcable",
"superb-sea2",
"cytranet",
"iweb",
"gigenet",
"ayera",
"astuteinternet",
"pilotfiber",
"svwh",
]
],
)
load("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps")
boost_deps()
git_repository(
name = "immer",
commit = "2fb0391efa066e4ef05029dcad2a503d7bd30123",
remote = "https://github.com/cgrinker/immer",
shallow_since = "1622608084 -0700",
)
#### TODO fix up the above
git_repository(
name = "ninja_ob1_bazel",
commit = "4db5aecba19e8ee72c08074e518457e19ba0a602",
remote = "https://github.com/OffByOneStudios/ob1-bazel",
shallow_since = "1641599917 -0800"
)
load("@ninja_ob1_bazel//:bazel/deps.bzl", "ob1_deps")
ob1_deps()
load("@ninja_ob1_bazel//:bazel/setup.bzl", "ob1_setup")
ob1_setup()