ttfautohint: 1.3 -> 1.6
This commit is contained in:
parent
cc9b960f48
commit
36f27506e5
1 changed files with 6 additions and 5 deletions
|
@ -1,15 +1,16 @@
|
||||||
{ stdenv, fetchurl, harfbuzz, pkgconfig, qt4 }:
|
{ stdenv, fetchurl, harfbuzz, pkgconfig, qt4 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.3";
|
version = "1.6";
|
||||||
name = "ttfautohint-${version}";
|
name = "ttfautohint-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://savannah/freetype/${name}.tar.gz";
|
url = "mirror://savannah/freetype/${name}.tar.gz";
|
||||||
sha256 = "01719jgdzgf0m4fzkkij563iksr40c7wydv1yq8ygpxjj0vs17y3";
|
sha256 = "1r8vsznvh89ay35angxp3w1xljxjlpcv9wdjyn7m61n323vi6474";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ harfbuzz pkgconfig qt4 ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
buildInputs = [ harfbuzz qt4 ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "An automatic hinter for TrueType fonts";
|
description = "An automatic hinter for TrueType fonts";
|
||||||
|
@ -21,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
homepage = http://www.freetype.org/ttfautohint/;
|
homepage = http://www.freetype.org/ttfautohint/;
|
||||||
license = licenses.gpl2Plus; # or the FreeType License (BSD + advertising clause)
|
license = licenses.gpl2Plus; # or the FreeType License (BSD + advertising clause)
|
||||||
maintainers = [ maintainers.goibhniu ];
|
maintainers = with maintainers; [ goibhniu ndowens ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue