-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
33 lines (23 loc) · 1.19 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
workspace(name = "clangd-bug-test")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Hedron's Compile Commands Extractor for Bazel
# https://github.com/hedronvision/bazel-compile-commands-extractor
HEDRON_COMPILE_COMMANDS_COMMIT = "d1e95ec162e050b04d0a191826f9bc478de639f7"
http_archive(
name = "hedron_compile_commands",
sha256 = "ab6c6b4ceaf12b224e571ec075fd79086c52c3430993140bb2ed585b08dfc552",
strip_prefix = "bazel-compile-commands-extractor-" + HEDRON_COMPILE_COMMANDS_COMMIT,
url = "https://github.com/hedronvision/bazel-compile-commands-extractor/archive/" + HEDRON_COMPILE_COMMANDS_COMMIT + ".tar.gz",
)
load("@hedron_compile_commands//:workspace_setup.bzl", "hedron_compile_commands_setup")
hedron_compile_commands_setup()
RULES_PICO_COMMIT = "main"
http_archive(
name = "rules_pico",
sha256 = "4df2a0e2a99425fda34503c687bc723d92fa1c906601354ead94fc5ca19e402d",
strip_prefix = "rules_pico-" + RULES_PICO_COMMIT,
url = "https://github.com/NomiChirps/rules_pico/archive/" + RULES_PICO_COMMIT + ".zip",
)
load("@rules_pico//pico:repositories.bzl", "rules_pico_dependencies", "rules_pico_toolchains")
rules_pico_dependencies()
rules_pico_toolchains()