blob: baf7bd4c1296916fe119c872116421bcdf34306d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
package harfbuzz {
description = "a text shaping library";
website = "https://harfbuzz.github.io";
anitya = 1299;
version# = "14.3.0";
source = remoteGitHub {
suffix = "harfbuzz/harfbuzz";
tag = version;
checksum = "C03eSJbyFvrOPXWhlHgwxfqUKyR9xQO_FKzbwQzT7hW9DTUAQIiwvUIf_6cqaKPm";
};
exec = meson {
setup = {
"cairo": "enabled";
"png": "enabled";
"zlib": "enabled";
"freetype": "enabled";
};
};
inputs = [
zlib,
cairo,
];
runtime = [
zlib,
cairo,
];
}
|