ghostty/pkg/fontconfig/build.zig.zon
Mitchell Hashimoto 3fc5b02d73 pkg/fontconfig: move some dependencies to our own mirror
These are unmodified, so users can still verify the checksum with the
official downloads if they feel unsafe.
2024-01-02 15:27:59 -08:00

14 lines
387 B
Zig

.{
.name = "fontconfig",
.version = "2.14.2",
.dependencies = .{
.fontconfig = .{
.url = "https://deps.files.ghostty.dev/fontconfig-2.14.2.tar.gz",
.hash = "12201149afb3326c56c05bb0a577f54f76ac20deece63aa2f5cd6ff31a4fa4fcb3b7",
},
.freetype = .{ .path = "../freetype" },
.libxml2 = .{ .path = "../libxml2" },
},
}