2015-02-15 21:31:07 +00:00
|
|
|
|
{ stdenv, fetchurl, harfbuzz, pkgconfig, qt4 }:
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-03-03 01:18:21 +00:00
|
|
|
|
version = "1.6";
|
2015-02-15 21:31:07 +00:00
|
|
|
|
name = "ttfautohint-${version}";
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://savannah/freetype/${name}.tar.gz";
|
2017-03-03 01:18:21 +00:00
|
|
|
|
sha256 = "1r8vsznvh89ay35angxp3w1xljxjlpcv9wdjyn7m61n323vi6474";
|
2015-02-15 21:31:07 +00:00
|
|
|
|
};
|
2017-03-03 01:18:21 +00:00
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
buildInputs = [ harfbuzz qt4 ];
|
2015-02-15 21:31:07 +00: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.
|
|
|
|
|
'';
|
2017-08-03 20:40:04 +01:00
|
|
|
|
homepage = https://www.freetype.org/ttfautohint;
|
2015-02-15 21:31:07 +00:00
|
|
|
|
license = licenses.gpl2Plus; # or the FreeType License (BSD + advertising clause)
|
2017-03-03 01:18:21 +00:00
|
|
|
|
maintainers = with maintainers; [ goibhniu ndowens ];
|
2016-09-01 18:39:33 +01:00
|
|
|
|
platforms = platforms.linux;
|
2015-02-15 21:31:07 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|