summary refs log tree commit diff
path: root/pkgs/tools/misc/ttfautohint
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-03-02 19:18:21 -0600
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-03-05 13:09:32 +0200
commit36f27506e5796d879f5b8ccea585b5f8711300eb (patch)
tree9ac369d1e0a5bb3dc227e0a92850f6f1dfad06b3 /pkgs/tools/misc/ttfautohint
parentcc9b960f48a117fa720f645b9f496eca576591a8 (diff)
downloadnixpkgs-36f27506e5796d879f5b8ccea585b5f8711300eb.tar
nixpkgs-36f27506e5796d879f5b8ccea585b5f8711300eb.tar.gz
nixpkgs-36f27506e5796d879f5b8ccea585b5f8711300eb.tar.bz2
nixpkgs-36f27506e5796d879f5b8ccea585b5f8711300eb.tar.lz
nixpkgs-36f27506e5796d879f5b8ccea585b5f8711300eb.tar.xz
nixpkgs-36f27506e5796d879f5b8ccea585b5f8711300eb.tar.zst
nixpkgs-36f27506e5796d879f5b8ccea585b5f8711300eb.zip
ttfautohint: 1.3 -> 1.6
Diffstat (limited to 'pkgs/tools/misc/ttfautohint')
-rw-r--r--pkgs/tools/misc/ttfautohint/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/tools/misc/ttfautohint/default.nix b/pkgs/tools/misc/ttfautohint/default.nix
index e539c0e1e02..1042c5794bd 100644
--- a/pkgs/tools/misc/ttfautohint/default.nix
+++ b/pkgs/tools/misc/ttfautohint/default.nix
@@ -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;
   };