Merge pull request #77864 from dtzWill/feature/lcdf-typetools
lcdf-typetools: init at 2.108
This commit is contained in:
commit
fbc7d27ebc
24
pkgs/tools/misc/lcdf-typetools/default.nix
Normal file
24
pkgs/tools/misc/lcdf-typetools/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4724,6 +4724,8 @@ in
|
|||||||
|
|
||||||
latexrun = callPackage ../tools/typesetting/tex/latexrun { };
|
latexrun = callPackage ../tools/typesetting/tex/latexrun { };
|
||||||
|
|
||||||
|
lcdf-typetools = callPackage ../tools/misc/lcdf-typetools { };
|
||||||
|
|
||||||
ldapvi = callPackage ../tools/misc/ldapvi { };
|
ldapvi = callPackage ../tools/misc/ldapvi { };
|
||||||
|
|
||||||
ldns = callPackage ../development/libraries/ldns { };
|
ldns = callPackage ../development/libraries/ldns { };
|
||||||
|
Loading…
Reference in New Issue
Block a user