blob: 51e742fe729fb6bbd9b141f6a7a0965e31b872f2 (
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
|
package fcft {
description = "a simple library for font loading and glyph rasterization using FontConfig, FreeType and pixman";
website = "https://codeberg.org/dnkl/fcft";
anitya = 143240;
version# = "3.3.3";
source = remoteTar {
url = "https://codeberg.org/dnkl/fcft/releases/download/"+version+
"/fcft-"+version+".tar.gz";
checksum = "pryAJA-d1OpY8KXbGFEHum9Wm6ME9XkPx9EM_OQ_ZEpOUpQnqlkzIq-cwS1ziMPk";
compress = gzip;
};
exec = meson {};
inputs = [
pixman,
fontconfig,
utf8proc,
tllist,
];
runtime = [
pixman,
fontconfig,
utf8proc,
];
}
|