ttfautohint: 1.3 -> 1.6

This commit is contained in:
ndowens 2017-03-02 19:18:21 -06:00 committed by Tuomas Tynkkynen
parent cc9b960f48
commit 36f27506e5

View File

@ -1,15 +1,16 @@
{ stdenv, fetchurl, harfbuzz, pkgconfig, qt4 }:
stdenv.mkDerivation rec {
version = "1.3";
version = "1.6";
name = "ttfautohint-${version}";
src = fetchurl {
url = "mirror://savannah/freetype/${name}.tar.gz";
sha256 = "01719jgdzgf0m4fzkkij563iksr40c7wydv1yq8ygpxjj0vs17y3";
sha256 = "1r8vsznvh89ay35angxp3w1xljxjlpcv9wdjyn7m61n323vi6474";
};
buildInputs = [ harfbuzz pkgconfig qt4 ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ harfbuzz qt4 ];
meta = with stdenv.lib; {
description = "An automatic hinter for TrueType fonts";
@ -21,7 +22,7 @@ stdenv.mkDerivation rec {
'';
homepage = http://www.freetype.org/ttfautohint/;
license = licenses.gpl2Plus; # or the FreeType License (BSD + advertising clause)
maintainers = [ maintainers.goibhniu ];
maintainers = with maintainers; [ goibhniu ndowens ];
platforms = platforms.linux;
};