mirror of
https://github.com/neovim/neovim.git
synced 2026-02-20 10:28:33 +00:00
Problem: build.zig always downloads dependencies and statically links them, which is frowned upon by distro packagers. Solution: Add option to use system libraries.
14 lines
357 B
Zig
14 lines
357 B
Zig
.{
|
|
.name = "utf8proc",
|
|
.version = "2.10.0",
|
|
.paths = .{""},
|
|
|
|
.dependencies = .{
|
|
.utf8proc = .{
|
|
.url = "git+https://github.com/juliastrings/utf8proc?ref=v2.11.3#e5e799221b45bbb90f5fdc5c69b6b8dfbf017e78",
|
|
.hash = "N-V-__8AACywKABFCj0r_Y-jIWsk9ahy10zlk78hjn6S-39g",
|
|
.lazy = true,
|
|
},
|
|
},
|
|
}
|