-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMODULE.bazel
More file actions
22 lines (20 loc) · 813 Bytes
/
MODULE.bazel
File metadata and controls
22 lines (20 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""Having to doctype MODULE.bazel is a bit silly, Buildifier."""
module(name = "ffs")
bazel_dep(name = "platforms", version = "1.1.0")
bazel_dep(name = "rules_cc", version = "0.2.18")
bazel_dep(name = "rules_fuzzing", version = "0.6.0")
bazel_dep(name = "hastur")
archive_override(
module_name = "hastur",
integrity = "sha256-gKPPAga5Rp+ExC8nkDAIAgv1KBxB1Z2PWQKQZvXsmQ0=",
# TODO(robinlinden): Make depending on Hastur easier.
patch_cmds = [
"""cat <<EOF >MODULE.bazel
module(name = "hastur")
bazel_dep(name = "rules_cc", version = "0.2.18")
bazel_dep(name = "rules_shell", version = "0.8.0")
EOF""",
],
strip_prefix = "hastur-c3d3425ad5fcc80289ea83217e51af89bbcc021c",
url = "https://github.com/robinlinden/hastur/archive/c3d3425ad5fcc80289ea83217e51af89bbcc021c.tar.gz",
)