depot/third_party/nixpkgs/pkgs/tools/misc/ttfautohint/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

42 lines
1.3 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
stdenv, lib, fetchurl, pkgconfig, autoreconfHook
, freetype, harfbuzz, libiconv, qtbase
, enableGUI ? true
}:
stdenv.mkDerivation rec {
version = "1.8.3";
pname = "ttfautohint";
src = fetchurl {
url = "mirror://savannah/freetype/${pname}-${version}.tar.gz";
sha256 = "0zpqgihn3yh3v51ynxwr8asqrijvs4gv686clwv7bm8sawr4kfw7";
};
postAutoreconf = ''
substituteInPlace configure --replace "macx-g++" "macx-clang"
'';
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ freetype harfbuzz libiconv ] ++ lib.optional enableGUI qtbase;
configureFlags = [ ''--with-qt=${if enableGUI then "${qtbase}/lib" else "no"}'' ];
enableParallelBuilding = true;
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 FreeTypes auto-hinting module.
'';
homepage = "https://www.freetype.org/ttfautohint";
license = licenses.gpl2Plus; # or the FreeType License (BSD + advertising clause)
maintainers = with maintainers; [ goibhniu ];
platforms = platforms.unix;
};
}