mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-09-28 14:08:35 +00:00
25 lines
844 B
Zig
25 lines
844 B
Zig
.{
|
|
.name = .zig_vt,
|
|
.version = "0.0.0",
|
|
.fingerprint = 0x6045575a7a8387e6,
|
|
.minimum_zig_version = "0.14.1",
|
|
.dependencies = .{
|
|
// Ghostty dependency. In reality, you'd probably use a URL-based
|
|
// dependency like the one showed (and commented out) below this one.
|
|
// We use a path dependency here for simplicity and to ensure our
|
|
// examples always test against the source they're bundled with.
|
|
.ghostty = .{ .path = "../../" },
|
|
|
|
// Example of what a URL-based dependency looks like:
|
|
// .ghostty = .{
|
|
// .url = "https://github.com/ghostty-org/ghostty/archive/COMMIT.tar.gz",
|
|
// .hash = "N-V-__8AAMVLTABmYkLqhZPLXnMl-KyN38R8UVYqGrxqO36s",
|
|
// },
|
|
},
|
|
.paths = .{
|
|
"build.zig",
|
|
"build.zig.zon",
|
|
"src",
|
|
},
|
|
}
|