authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-05-29 16:35:54 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-05-29 16:35:54 -07:00
log0f4db4c980146e4a3fc86a9a9070452a25ff9317
tree6f9706693d395500d813ffb62fa98940bbf584e1
parent6e4e3983cea4fe7f705ce6c6606832fca409a4c7
signaturebadge-check Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

macos support


3 files changed, 3 insertions(+), 0 deletions(-)

licenses.txt+1
......@@ -3,6 +3,7 @@ MIT:
33- This
44- git https://github.com/nektro/zig-expect
55- git https://github.com/nektro/zig-extras
6- git https://github.com/nektro/zig-sys-darwin
67- git https://github.com/nektro/zig-sys-linux
78
89Unspecified:
time.zig+1
......@@ -7,6 +7,7 @@ const time = @This();
77
88const sys = switch (builtin.target.os.tag) {
99 .linux => sys_linux,
10 .macos => @import("sys-darwin"),
1011 else => unreachable, // TODO:
1112};
1213
zig.mod+1
......@@ -7,5 +7,6 @@ min_zig_version: 0.11.0-dev.1681+0bb178bbb
77dependencies:
88 - src: git https://github.com/nektro/zig-extras
99 - src: git https://github.com/nektro/zig-sys-linux
10 - src: git https://github.com/nektro/zig-sys-darwin
1011root_dependencies:
1112 - src: git https://github.com/nektro/zig-expect