mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-25 14:44:28 +00:00
Follow-up to #50205 Release Notes: - N/A Co-authored-by: Neel Chotai <neel@zed.dev> Co-authored-by: Josh Robson Chase <josh@robsonchase.com>
64 lines
1.2 KiB
Nix
64 lines
1.2 KiB
Nix
{
|
|
brotli,
|
|
fontconfig,
|
|
freetype,
|
|
harfbuzz,
|
|
icu,
|
|
jsoncpp,
|
|
libpng,
|
|
libwebp,
|
|
libxml2,
|
|
libxslt,
|
|
minizip,
|
|
ffmpeg_6,
|
|
}:
|
|
{
|
|
"brotli" = {
|
|
package = brotli;
|
|
path = "third_party/brotli/BUILD.gn";
|
|
};
|
|
"fontconfig" = {
|
|
package = fontconfig;
|
|
path = "third_party/fontconfig/BUILD.gn";
|
|
};
|
|
"freetype" = {
|
|
package = freetype;
|
|
path = "build/config/freetype/freetype.gni";
|
|
};
|
|
"harfbuzz-ng" = {
|
|
package = harfbuzz;
|
|
path = "third_party/harfbuzz-ng/harfbuzz.gni";
|
|
};
|
|
"jsoncpp" = {
|
|
package = jsoncpp;
|
|
path = "third_party/jsoncpp/BUILD.gn";
|
|
};
|
|
"icu" = {
|
|
package = icu;
|
|
path = "third_party/icu/BUILD.gn";
|
|
};
|
|
"libpng" = {
|
|
package = libpng;
|
|
path = "third_party/libpng/BUILD.gn";
|
|
};
|
|
"libwebp" = {
|
|
package = libwebp;
|
|
path = "third_party/libwebp/BUILD.gn";
|
|
};
|
|
"libxml" = {
|
|
package = libxml2;
|
|
path = "third_party/libxml/BUILD.gn";
|
|
};
|
|
"libxslt" = {
|
|
package = libxslt;
|
|
path = "third_party/libxslt/BUILD.gn";
|
|
};
|
|
"zlib" = {
|
|
package = minizip;
|
|
path = "third_party/zlib/BUILD.gn";
|
|
};
|
|
"ffmpeg" = {
|
|
package = ffmpeg_6;
|
|
path = "third_party/ffmpeg/BUILD.gn";
|
|
};
|
|
}
|