forked from nicmcd/libstrop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
34 lines (29 loc) · 928 Bytes
/
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
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
release = "1.13.0"
http_archive(
name = "googletest",
urls = ["https://github.com/google/googletest/archive/refs/tags/v" + release + ".tar.gz"],
strip_prefix = "googletest-" + release,
)
http_file(
name = "cpplint_build",
urls = ["https://raw.githubusercontent.com/nicmcd/pkgbuild/master/cpplint.BUILD"],
)
release = "1.5.4"
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"],
)
hash = "068f9ce"
http_archive(
name = "libprim",
urls = ["https://github.com/nicmcd/libprim/tarball/" + hash],
type = "tar.gz",
strip_prefix = "nicmcd-libprim-" + hash,
)