-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWORKSPACE
More file actions
92 lines (79 loc) · 2.25 KB
/
WORKSPACE
File metadata and controls
92 lines (79 loc) · 2.25 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
release = "1.8.1"
http_archive(
name = "googletest",
urls = ["https://github.com/google/googletest/archive/release-" + release + ".tar.gz"],
strip_prefix = "googletest-release-" + release,
)
http_file(
name = "cpplint_build",
urls = ["https://raw.githubusercontent.com/nicmcd/pkgbuild/master/cpplint.BUILD"],
)
release = "1.3.0"
http_archive(
name = "cpplint",
urls = ["https://github.com/cpplint/cpplint/archive/" + release + ".tar.gz"],
strip_prefix = "cpplint-" + release,
build_file = "@cpplint_build//file:downloaded",
)
http_file(
name = "clang_format",
urls = ["https://raw.githubusercontent.com/nicmcd/pkgbuild/master/clang-format"],
)
http_file(
name = "zlib_build",
urls = ["https://raw.githubusercontent.com/nicmcd/pkgbuild/master/zlib.BUILD"],
)
version = "1.2.12"
http_archive(
name = "zlib",
urls = ["https://www.zlib.net/zlib-" + version + ".tar.gz"],
strip_prefix = "zlib-" + version,
build_file = "@zlib_build//file:downloaded",
)
http_file(
name = "tclap_build",
urls = ["https://raw.githubusercontent.com/nicmcd/pkgbuild/master/tclap.BUILD"],
)
version = "1.2.2"
http_archive(
name = "tclap",
urls = ["https://sourceforge.net/projects/tclap/files/tclap-" + version + ".tar.gz"],
strip_prefix = "tclap-" + version,
build_file = "@tclap_build//file:downloaded",
)
hash = "f564c5c"
http_archive(
name = "libprim",
urls = ["https://github.com/nicmcd/libprim/tarball/" + hash],
type = "tar.gz",
strip_prefix = "nicmcd-libprim-" + hash,
)
hash = "bac91b7"
http_archive(
name = "libex",
urls = ["https://github.com/nicmcd/libex/tarball/" + hash],
type = "tar.gz",
strip_prefix = "nicmcd-libex-" + hash,
)
hash = "6570b57"
http_archive(
name = "libfio",
urls = ["https://github.com/nicmcd/libfio/tarball/" + hash],
type = "tar.gz",
strip_prefix = "nicmcd-libfio-" + hash,
)
hash = "ee4a54f"
http_archive(
name = "libstrop",
urls = ["https://github.com/nicmcd/libstrop/tarball/" + hash],
type = "tar.gz",
strip_prefix = "nicmcd-libstrop-" + hash,
)
hash = "ba13761"
http_archive(
name = "libmut",
urls = ["https://github.com/nicmcd/libmut/tarball/" + hash],
type = "tar.gz",
strip_prefix = "nicmcd-libmut-" + hash,
)