2018-03-14 19:15:06 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, freetype, cairo, libintl
|
2015-10-05 18:26:54 +01:00
|
|
|
, icu, graphite2, harfbuzz # The icu variant uses and propagates the non-icu one.
|
2018-04-25 19:30:22 +01:00
|
|
|
, ApplicationServices, CoreText
|
|
|
|
, withCoreText ? false
|
2013-11-24 12:51:12 +00:00
|
|
|
, withIcu ? false # recommended by upstream as default, but most don't needed and it's big
|
2014-06-01 06:51:16 +01:00
|
|
|
, withGraphite2 ? true # it is small and major distros do include it
|
2018-08-08 19:35:37 +01:00
|
|
|
, python
|
2013-11-24 12:51:12 +00:00
|
|
|
}:
|
|
|
|
|
2015-10-05 18:26:54 +01:00
|
|
|
let
|
2018-08-17 10:28:29 +01:00
|
|
|
version = "1.8.8";
|
2015-10-05 18:26:54 +01:00
|
|
|
inherit (stdenv.lib) optional optionals optionalString;
|
|
|
|
in
|
2012-09-27 22:23:36 +01:00
|
|
|
|
2015-10-05 18:26:54 +01:00
|
|
|
stdenv.mkDerivation {
|
2015-11-20 13:32:58 +00:00
|
|
|
name = "harfbuzz${optionalString withIcu "-icu"}-${version}";
|
2012-09-27 22:23:36 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.freedesktop.org/software/harfbuzz/release/harfbuzz-${version}.tar.bz2";
|
2018-08-17 10:28:29 +01:00
|
|
|
sha256 = "1ag3scnm1fcviqgx2p4858y433mr0ndqw6zccnccrqcr9mpcird8";
|
2012-09-27 22:23:36 +01:00
|
|
|
};
|
|
|
|
|
2018-08-08 19:35:37 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs src/gen-def.py
|
|
|
|
patchShebangs test
|
|
|
|
'';
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-05 18:26:54 +01:00
|
|
|
outputBin = "dev";
|
2015-07-26 12:43:49 +01:00
|
|
|
|
2013-11-24 12:51:12 +00:00
|
|
|
configureFlags = [
|
2018-04-25 19:30:22 +01:00
|
|
|
# not auto-detected by default
|
|
|
|
"--with-coretext=${if withCoreText then "yes" else "no"}"
|
|
|
|
"--with-graphite2=${if withGraphite2 then "yes" else "no"}"
|
|
|
|
"--with-icu=${if withIcu then "yes" else "no"}"
|
2013-11-24 12:51:12 +00:00
|
|
|
];
|
|
|
|
|
2018-03-14 19:15:06 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig libintl ];
|
2018-04-25 19:30:22 +01:00
|
|
|
|
|
|
|
buildInputs = [ glib freetype cairo ] # recommended by upstream
|
|
|
|
++ stdenv.lib.optionals withCoreText [ ApplicationServices CoreText ];
|
|
|
|
|
2013-10-14 07:36:39 +01:00
|
|
|
propagatedBuildInputs = []
|
2015-10-05 18:26:54 +01:00
|
|
|
++ optional withGraphite2 graphite2
|
2018-08-08 19:35:37 +01:00
|
|
|
++ optionals withIcu [ icu harfbuzz ];
|
|
|
|
|
|
|
|
checkInputs = [ python ];
|
|
|
|
doInstallCheck = false; # fails, probably a bug
|
2012-09-27 22:23:36 +01:00
|
|
|
|
2015-10-05 18:26:54 +01:00
|
|
|
# Slightly hacky; some pkgs expect them in a single directory.
|
|
|
|
postInstall = optionalString withIcu ''
|
|
|
|
rm "$out"/lib/libharfbuzz.* "$dev/lib/pkgconfig/harfbuzz.pc"
|
|
|
|
ln -s {'${harfbuzz.out}',"$out"}/lib/libharfbuzz.la
|
|
|
|
ln -s {'${harfbuzz.dev}',"$dev"}/lib/pkgconfig/harfbuzz.pc
|
2016-07-23 06:56:08 +01:00
|
|
|
${optionalString stdenv.isDarwin ''
|
|
|
|
ln -s {'${harfbuzz.out}',"$out"}/lib/libharfbuzz.dylib
|
|
|
|
ln -s {'${harfbuzz.out}',"$out"}/lib/libharfbuzz.0.dylib
|
|
|
|
''}
|
2015-10-05 18:26:54 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2012-09-27 22:23:36 +01:00
|
|
|
description = "An OpenType text shaping engine";
|
|
|
|
homepage = http://www.freedesktop.org/wiki/Software/HarfBuzz;
|
2016-09-26 14:45:48 +01:00
|
|
|
downloadPage = "https://www.freedesktop.org/software/harfbuzz/release/";
|
2015-10-05 18:26:54 +01:00
|
|
|
maintainers = [ maintainers.eelco ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2016-09-26 14:45:48 +01:00
|
|
|
inherit version;
|
|
|
|
updateWalker = true;
|
2012-09-27 22:23:36 +01:00
|
|
|
};
|
|
|
|
}
|