blob: e1d91a7dfacde11bbbde36ea9661519b6c687911 (
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
32
33
34
35
36
37
38
|
package pango {
description = "a library for layout and rendering of text";
website = "https://www.pango.org";
anitya = 11783;
version# = "1.58.2";
source = remoteGitLab {
domain = "gitlab.gnome.org";
suffix = "GNOME/pango";
ref = version;
checksum = "e_IeoTvj9uueBXAf0s5SBBAqov_8Vc2XjdtxHCSKsg38ZfAlBoBPhHOZRd7jxTC6";
};
patches = [ "glib-unused-but-set-global.patch" ];
exec = meson {
setup = {
"fontconfig": "enabled";
"freetype": "enabled";
"cairo": "enabled";
};
// Fontconfig error: Cannot load default config file: File not found: /etc/fonts/fonts.conf
test = false;
};
inputs = [
glib,
cairo,
fribidi,
harfbuzz,
];
runtime = [
glib,
cairo,
fribidi,
harfbuzz,
];
}
|