-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.zig.zon
35 lines (35 loc) · 1.29 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
.{
.name = .binutils,
.version = "2.44.0",
.minimum_zig_version = "0.14.0",
.dependencies = .{
// Zig cannot fetch this dependency from https://sourceware.org/git/binutils-gdb.git yet.
// See https://github.com/ziglang/zig/issues/22650
.binutils = .{
.url = "https://github.com/bminor/binutils-gdb/archive/4746604fb42357df32169db7c77d1b11c90eb9a7.tar.gz",
.hash = "N-V-__8AADcckxfNVXuM-vFnqiIpmdEmlm7kneba_8S4akD1",
},
.zlib = .{
.url = "git+https://github.com/allyourcodebase/zlib#6c72830882690c1eb2567a537525c3f432c1da50",
.hash = "zlib-1.3.1-ZZQ7lVgMAACwO4nUUd8GLhsuQ5JQq_VAhlEiENJTUv6h",
.lazy = true,
},
.zstd = .{
.url = "git+https://github.com/allyourcodebase/zstd.git?ref=1.5.7#01327d49cbc56dc24c20a167bb0055d7fc23de84",
.hash = "zstd-1.5.7-KEItkJ8vAAC5_rRlKmLflYQ-eKXbAIQBWZNmmJtS18q0",
.lazy = true,
},
},
.paths = .{
"build.zig",
"build.zig.zon",
"COPYING",
"COPYING.LIB",
"COPYING3",
"COPYING3.LIB",
"README.md",
"include/targmatch.h",
"find_replace.zig",
},
.fingerprint = 0x4911b3458854c64a, // Changing this has security and trust implications.
}