2018-01-01 12:11:23 -08:00
|
|
|
|
{
|
|
|
|
|
stdenv, lib, fetchurl, pkgconfig, autoreconfHook
|
|
|
|
|
, freetype, harfbuzz, libiconv, qtbase
|
|
|
|
|
, enableGUI ? true
|
|
|
|
|
}:
|
2015-02-15 13:31:07 -08:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-16 07:45:34 -07:00
|
|
|
|
version = "1.8.3";
|
2019-08-15 05:41:18 -07:00
|
|
|
|
pname = "ttfautohint";
|
2017-11-26 16:44:09 -08:00
|
|
|
|
|
2015-02-15 13:31:07 -08:00
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
|
url = "mirror://savannah/freetype/${pname}-${version}.tar.gz";
|
2019-04-16 07:45:34 -07:00
|
|
|
|
sha256 = "0zpqgihn3yh3v51ynxwr8asqrijvs4gv686clwv7bm8sawr4kfw7";
|
2015-02-15 13:31:07 -08:00
|
|
|
|
};
|
2017-11-26 16:44:09 -08:00
|
|
|
|
|
2018-01-05 07:09:02 -08:00
|
|
|
|
postAutoreconf = ''
|
2017-11-26 16:44:09 -08:00
|
|
|
|
substituteInPlace configure --replace "macx-g++" "macx-clang"
|
|
|
|
|
'';
|
|
|
|
|
|
2018-01-01 12:11:23 -08:00
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
2017-11-26 16:44:09 -08:00
|
|
|
|
|
2017-11-26 17:01:00 -08:00
|
|
|
|
buildInputs = [ freetype harfbuzz libiconv ] ++ lib.optional enableGUI qtbase;
|
|
|
|
|
|
2018-01-01 12:11:23 -08:00
|
|
|
|
configureFlags = [ ''--with-qt=${if enableGUI then "${qtbase}/lib" else "no"}'' ];
|
2017-11-26 16:44:09 -08:00
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2015-02-15 13:31:07 -08:00
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
'';
|
2017-08-03 12:40:04 -07:00
|
|
|
|
homepage = https://www.freetype.org/ttfautohint;
|
2015-02-15 13:31:07 -08:00
|
|
|
|
license = licenses.gpl2Plus; # or the FreeType License (BSD + advertising clause)
|
2019-12-26 13:28:10 -08:00
|
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
2017-11-26 16:44:09 -08:00
|
|
|
|
platforms = platforms.unix;
|
2015-02-15 13:31:07 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|