-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.zig.zon
27 lines (26 loc) · 980 Bytes
/
build.zig.zon
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
.{
.name = "zig-raspberry-pico-sdk",
.version = "0.0.1",
.minimum_zig_version = "0.13.0",
.dependencies = .{
.@"pico-sdk" = .{
.url = "git+https://github.com/raspberrypi/pico-sdk.git#95ea6acad131124694cda1c162c52cd30e0aece0",
.hash = "122010b645943ea8b2c0e907afca5d0ce6ef43268def7788371464ecd77ee99605f3",
},
.picotool = .{
.lazy = true,
.url = "git+https://github.com/raspberrypi/picotool.git#df21059f7ca6f1babc7f1f3b92122cacffc85951",
.hash = "12201c91029f46eea5b876ee361980bc371ecb98d0d4fc354f99cbec2db61acd9911",
},
.libusb = .{
.url = "git+https://github.com/allyourcodebase/libusb.git#d9bc1457b0d3cc5c39a4dc845d6974f52dac2dea",
.hash = "122094ff89a6d2146b10dc159a2f54faf6b08ae5dcd9b860cc502272a7148447a5bf",
},
},
.paths = .{
"build.zig",
"build.zig.zon",
"src",
"README.md",
},
}