lol
1{
2 lib,
3 stdenv,
4 fetchurl,
5 pkg-config,
6}:
7
8stdenv.mkDerivation rec {
9 pname = "eot_utilities";
10 version = "1.1";
11
12 src = fetchurl {
13 url = "https://www.w3.org/Tools/eot-utils/eot-utilities-${version}.tar.gz";
14 sha256 = "0cb41riabss23hgfg7vxhky09d6zqwjy1nxdvr3l2bh5qzd4kvaf";
15 };
16
17 nativeBuildInputs = [ pkg-config ];
18
19 meta = {
20 homepage = "https://www.w3.org/Tools/eot-utils/";
21 description = "Create Embedded Open Type from OpenType or TrueType font";
22 license = lib.licenses.w3c;
23 maintainers = with lib.maintainers; [ leenaars ];
24 platforms = with lib.platforms; unix;
25 };
26}