This repository was archived by the owner on Nov 26, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.zig.zon
More file actions
58 lines (58 loc) · 2.64 KB
/
build.zig.zon
File metadata and controls
58 lines (58 loc) · 2.64 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
.{
.name = .zenoh,
.version = "0.0.0",
.dependencies = .{
// TODO: add more?
// linux
.zenoh_c_aarch64_linux_musl = .{
.url = "https://github.com/eclipse-zenoh/zenoh-c/releases/download/1.6.2/zenoh-c-1.6.2-aarch64-unknown-linux-musl-standalone.zip",
.hash = "N-V-__8AAKAmIQP-0SFq6rmAZQI4VSdOm4jqbK0DewkRBlHM",
.lazy = true,
},
.zenoh_c_x86_64_linux_musl = .{
.url = "https://github.com/eclipse-zenoh/zenoh-c/releases/download/1.6.2/zenoh-c-1.6.2-x86_64-unknown-linux-musl-standalone.zip",
.hash = "N-V-__8AAF_AJAOfEwh48MQrZORPqmOJYOEFV636e8CI45cy",
.lazy = true,
},
.zenoh_c_aarch64_linux_gnu = .{
.url = "https://github.com/eclipse-zenoh/zenoh-c/releases/download/1.6.2/zenoh-c-1.6.2-aarch64-unknown-linux-gnu-standalone.zip",
.hash = "N-V-__8AAHLMLAMhCXnOk7H2IJZAPYL1abnIllmFfrIRpwUj",
.lazy = true,
},
.zenoh_c_x86_64_linux_gnu = .{
.url = "https://github.com/eclipse-zenoh/zenoh-c/releases/download/1.6.2/zenoh-c-1.6.2-x86_64-unknown-linux-gnu-standalone.zip",
.hash = "N-V-__8AAAmGRwMPfZnrIITwijoZfjDN9kr6VivUrsfkxGzi",
.lazy = true,
},
// windows
.zenoh_c_x86_64_windows_gnu = .{
.url = "https://github.com/eclipse-zenoh/zenoh-c/releases/download/1.6.2/zenoh-c-1.6.2-x86_64-pc-windows-gnu-standalone.zip",
.hash = "N-V-__8AACWKagJu9mGbhRUvchN8kuJvaHPCz9EgjhVQBfPt",
.lazy = true,
},
.zenoh_c_x86_64_windows_msvc = .{
.url = "https://github.com/eclipse-zenoh/zenoh-c/releases/download/1.6.2/zenoh-c-1.6.2-x86_64-pc-windows-msvc-standalone.zip",
.hash = "N-V-__8AAFKJegK3mhnlMbPeJwqv09NEglP6lqi17SQjcHcv",
.lazy = true,
},
// macos
.zenoh_c_aarch64_macos_none = .{
.url = "https://github.com/eclipse-zenoh/zenoh-c/releases/download/1.6.2/zenoh-c-1.6.2-aarch64-apple-darwin-standalone.zip",
.hash = "N-V-__8AAKFHJwJdsTunrWyalkDItix-M_NzbpF6uET_87Mz",
.lazy = true,
},
.zenoh_c_x86_64_macos_none = .{
.url = "https://github.com/eclipse-zenoh/zenoh-c/releases/download/1.6.2/zenoh-c-1.6.2-x86_64-apple-darwin-standalone.zip",
.hash = "N-V-__8AAAiESwL-PIxD71-aqudYMaqsVDy2z-0AMPtkhfO6",
.lazy = true,
},
},
.fingerprint = 0x9afd706a63cc3640, // Changing this has security and trust implications.
.minimum_zig_version = "0.15.2",
.paths = .{
"build.zig",
"build.zig.zon",
"src",
"LICENSE",
},
}