-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.zig.zon
50 lines (46 loc) · 1.8 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.{
.name = "blockens",
.version = "0.0.1",
.dependencies = .{
.lua51 = .{
.url = "https://github.com/natecraddock/lua/archive/refs/tags/5.1.5-1.tar.gz",
.hash = "12203fe1feebb81635f8df5a5a7242733e441fe3f3043989c8e6b4d6720e96988813",
},
.lua52 = .{
.url = "https://www.lua.org/ftp/lua-5.2.4.tar.gz",
.hash = "1220d5b2b39738f0644d9ed5b7431973f1a16b937ef86d4cf85887ef3e9fda7a3379",
},
.lua53 = .{
.url = "https://www.lua.org/ftp/lua-5.3.6.tar.gz",
.hash = "1220937a223531ef6b3fea8f653dc135310b0e84805e7efa148870191f5ab915c828",
},
.lua54 = .{
.url = "https://www.lua.org/ftp/lua-5.4.6.tar.gz",
.hash = "1220f93ada1fa077ab096bf88a5b159ad421dbf6a478edec78ddb186d0c21d3476d9",
},
.luau = .{
.url = "https://github.com/luau-lang/luau/archive/refs/tags/0.607.tar.gz",
.hash = "122003818ff2aa912db37d4bbda314ff9ff70d03d9243af4b639490be98e2bfa7cb6",
},
.sqlite_amalgamation = .{
.url = "https://www.sqlite.org/2023/sqlite-autoconf-3440200.tar.gz",
.hash = "1220808ebe54c856e5e024c42eb97eafc0844f617d47e9e6df11eb2fb881cff071fe",
},
.system_sdk = .{
.path = "./libs/system-sdk",
},
.ztracy = .{ .path = "libs/ztracy" },
.zmesh = .{ .path = "libs/zmesh" },
.zglfw = .{ .path = "libs/zglfw" },
.zgui = .{ .path = "libs/zgui" },
.zopengl = .{ .path = "libs/zopengl" },
.zjobs = .{ .path = "libs/zjobs" },
.zflecs = .{ .path = "libs/zflecs" },
.zstbi = .{ .path = "libs/zstbi" },
.zmath = .{ .path = "libs/zmath" },
.znoise = .{ .path = "libs/znoise" },
},
.paths = .{
"",
},
}