-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.zig.zon
37 lines (36 loc) · 1.49 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
.{
.name = "zakuro-os",
.version = "0.0.0",
.minimum_zig_version = "0.13.0",
.dependencies = .{
.chameleon = .{
.url = "https://github.com/tr1ckydev/chameleon/archive/de73cc8e155d5a37194b0de567f5d2bfe179b77d.tar.gz",
.hash = "122062edf23ac27158e7ce8efb62b60978650dfb44532b92c66af96dfed7421b8974",
.lazy = false,
},
.clap = .{
.url = "https://github.com/Hejsil/zig-clap/archive/60cd46aacff4960104703da9ba683077b1e3c76c.tar.gz",
.hash = "12205eb22c644df2469045083efe9c92189d56494ebe8901b36ef1218c3717e6eb78",
.lazy = false,
},
},
// Specifies the set of files and directories that are included in this package.
// Only files and directories listed here are included in the `hash` that
// is computed for this package.
// Paths are relative to the build root. Use the empty string (`""`) to refer to
// the build root itself.
// A directory listed here means that all files within, recursively, are included.
.paths = .{
// This makes *all* files, recursively, included in this package. It is generally
// better to explicitly list the files and directories instead, to insure that
// fetching from tarballs, file system paths, and version control all result
// in the same contents hash.
"",
// For example...
//"build.zig",
//"build.zig.zon",
//"src",
//"LICENSE",
//"README.md",
},
}