summary refs log tree commit diff
path: root/pkgs/tools/misc/ttfautohint/default.nix
blob: 1042c5794bdf86528710da7e933bdc097aa1ec9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchurl, harfbuzz, pkgconfig, qt4 }:

stdenv.mkDerivation rec {
  version = "1.6";
  name = "ttfautohint-${version}";
  
  src = fetchurl {
    url = "mirror://savannah/freetype/${name}.tar.gz";
    sha256 = "1r8vsznvh89ay35angxp3w1xljxjlpcv9wdjyn7m61n323vi6474";
  };
  
  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ harfbuzz qt4 ];

  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)
    maintainers = with maintainers; [ goibhniu ndowens ];
    platforms = platforms.linux;
  };

}