forked from dfr/rules_pico
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
21 lines (16 loc) · 669 Bytes
/
WORKSPACE
File metadata and controls
21 lines (16 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
workspace(name = "rules_pico")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("//pico:repositories.bzl", "rules_pico_dependencies", "rules_pico_toolchains")
rules_pico_dependencies()
rules_pico_toolchains();
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
bazel_skylib_workspace()
http_archive(
name = "pico-examples",
build_file = "@rules_pico//pico:BUILD.pico-examples",
urls = [
"https://github.com/raspberrypi/pico-examples/archive/refs/tags/sdk-1.4.0.tar.gz",
],
strip_prefix = "pico-examples-sdk-1.4.0",
sha256 = "a07789d702f8e6034c42e04a3f9dda7ada4ae7c8e8d320c6be6675090c007861",
)