lcdf-typetools: init at 2.108

This commit is contained in:
Will Dietz 2020-01-15 11:01:18 -06:00
parent 2628f20267
commit afdfd68afa
No known key found for this signature in database
GPG key ID: EBB0EA4124809D02
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "lcdf-typetools";
version = "2.108";
src = fetchFromGitHub {
owner = "kohler";
repo = pname;
rev = "v${version}";
sha256 = "0a6jqaqwq43ldjjjlnsh6mczs2la9363qav7v9fyrfzkfj8kw9ad";
};
nativeBuildInputs = [ autoreconfHook ];
configureFlags = [ "--without-kpathsea" ];
meta = with stdenv.lib; {
description = "Utilities for manipulating OpenType, PostScript Type 1, and Multiple Master fonts";
homepage = "https://www.lcdf.org/type";
license = licenses.gpl2;
maintainers = with maintainers; [ dtzWill ];
};
}

View file

@ -4691,6 +4691,8 @@ in
latexrun = callPackage ../tools/typesetting/tex/latexrun { };
lcdf-typetools = callPackage ../tools/misc/lcdf-typetools { };
ldapvi = callPackage ../tools/misc/ldapvi { };
ldns = callPackage ../development/libraries/ldns { };