forked from mlafeldt/quack-zig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.zig.zon
29 lines (29 loc) · 1.28 KB
/
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
28
29
.{
.name = "duckdb-quack",
.version = "0.0.0", // unused
.minimum_zig_version = "0.13.0",
.dependencies = .{
// TODO: Switch to https://github.com/duckdb/duckdb/releases/download/v1.2.0/libduckdb-src.zip once released
.libduckdb_headers = .{
.url = "https://github.com/mlafeldt/libduckdb-headers/archive/650b336.zip",
.hash = "12209ebf64f45b8f6a977d5061058143c35ef996fbf0e99c949f0a5c68a1eb7fe7f8",
.lazy = true,
},
.libduckdb_1_1_3 = .{
.url = "https://github.com/duckdb/duckdb/releases/download/v1.1.3/libduckdb-src.zip",
.hash = "122081554b2ca7ea7fb02462dda7ec41c39ca42e6b8e663b3636ee10eb3cb86cef55",
.lazy = true,
},
.extension_ci_tools = .{
.url = "https://github.com/duckdb/extension-ci-tools/archive/v1.1.3.zip",
.hash = "1220b2dbcf900b96bf9f2242af1ebac5f7f4b78a62cca0f78814f86204e7045be7c1",
},
// TODO: Switch to Python package once it's available
.sqllogictest = .{
.url = "https://github.com/duckdb/duckdb-sqllogictest-python/archive/faf6f19.zip",
.hash = "122031b7caca451caf571803926d5c10d262fd8a13c80ecfd2d1480bda1c4254693d",
.lazy = true,
},
},
.paths = .{""},
}