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