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 {
|
2019-04-16 15:45:34 +01:00
|
|
|
|
version = "1.8.3";
|
2019-08-15 13:41:18 +01:00
|
|
|
|
pname = "ttfautohint";
|
2017-11-27 00:44:09 +00:00
|
|
|
|
|
2015-02-15 21:31:07 +00:00
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
|
url = "mirror://savannah/freetype/${pname}-${version}.tar.gz";
|
2019-04-16 15:45:34 +01:00
|
|
|
|
sha256 = "0zpqgihn3yh3v51ynxwr8asqrijvs4gv686clwv7bm8sawr4kfw7";
|
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
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
|
meta = with lib; {
|
2015-02-15 21:31:07 +00:00
|
|
|
|
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.
|
|
|
|
|
'';
|
2020-04-01 02:11:51 +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)
|
2019-12-26 21:28:10 +00:00
|
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
2017-11-27 00:44:09 +00:00
|
|
|
|
platforms = platforms.unix;
|
2015-02-15 21:31:07 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|