2015-02-15 22:31:07 +01:00
|
|
|
|
{ stdenv, fetchurl, harfbuzz, pkgconfig, qt4 }:
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-03-03 02:18:21 +01:00
|
|
|
|
version = "1.6";
|
2015-02-15 22:31:07 +01:00
|
|
|
|
name = "ttfautohint-${version}";
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://savannah/freetype/${name}.tar.gz";
|
2017-03-03 02:18:21 +01:00
|
|
|
|
sha256 = "1r8vsznvh89ay35angxp3w1xljxjlpcv9wdjyn7m61n323vi6474";
|
2015-02-15 22:31:07 +01:00
|
|
|
|
};
|
2017-03-03 02:18:21 +01:00
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
buildInputs = [ harfbuzz qt4 ];
|
2015-02-15 22:31:07 +01:00
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
description = "An automatic hinter for TrueType fonts";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
A library and two programs which take a TrueType font as the
|
|
|
|
|
input, remove its bytecode instructions (if any), and return a
|
|
|
|
|
new font where all glyphs are bytecode hinted using the
|
|
|
|
|
information given by FreeType’s auto-hinting module.
|
|
|
|
|
'';
|
|
|
|
|
homepage = http://www.freetype.org/ttfautohint/;
|
|
|
|
|
license = licenses.gpl2Plus; # or the FreeType License (BSD + advertising clause)
|
2017-03-03 02:18:21 +01:00
|
|
|
|
maintainers = with maintainers; [ goibhniu ndowens ];
|
2016-09-01 19:39:33 +02:00
|
|
|
|
platforms = platforms.linux;
|
2015-02-15 22:31:07 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|