1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4 pname = "lcdf-typetools";
7 src = fetchFromGitHub {
11 sha256 = "sha256-hoILYYCef2R1v6aN9V+FoYnXYaKsnGN2jlpb/QFAN/w=";
14 nativeBuildInputs = [ autoreconfHook ];
16 configureFlags = [ "--without-kpathsea" ];
19 description = "Utilities for manipulating OpenType, PostScript Type 1, and Multiple Master fonts";
20 homepage = "https://www.lcdf.org/type";
21 license = licenses.gpl2Only;
22 maintainers = with maintainers; [ dtzWill ];