2013-11-24 13:51:12 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, freetype, cairo, libintlOrEmpty
|
2015-10-05 19:26:54 +02:00
|
|
|
, icu, graphite2, harfbuzz # The icu variant uses and propagates the non-icu one.
|
2013-11-24 13:51:12 +01:00
|
|
|
, withIcu ? false # recommended by upstream as default, but most don't needed and it's big
|
2014-06-01 07:51:16 +02:00
|
|
|
, withGraphite2 ? true # it is small and major distros do include it
|
2013-11-24 13:51:12 +01:00
|
|
|
}:
|
|
|
|
|
2015-10-05 19:26:54 +02:00
|
|
|
let
|
2016-05-19 22:23:09 +02:00
|
|
|
version = "1.2.7";
|
2015-10-05 19:26:54 +02:00
|
|
|
inherit (stdenv.lib) optional optionals optionalString;
|
|
|
|
in
|
2012-09-27 23:23:36 +02:00
|
|
|
|
2015-10-05 19:26:54 +02:00
|
|
|
stdenv.mkDerivation {
|
2015-11-20 14:32:58 +01:00
|
|
|
name = "harfbuzz${optionalString withIcu "-icu"}-${version}";
|
2012-09-27 23:23:36 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-10-05 19:26:54 +02:00
|
|
|
url = "http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-${version}.tar.bz2";
|
2016-05-19 22:23:09 +02:00
|
|
|
sha256 = "09lh8x6qj0cd950whgaqqi3c4pqbl6z7aw9ddm73i14bw056185v";
|
2012-09-27 23:23:36 +02:00
|
|
|
};
|
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-05 19:26:54 +02:00
|
|
|
outputBin = "dev";
|
2015-07-26 13:43:49 +02:00
|
|
|
|
2013-11-24 13:51:12 +01:00
|
|
|
configureFlags = [
|
|
|
|
( "--with-graphite2=" + (if withGraphite2 then "yes" else "no") ) # not auto-detected by default
|
|
|
|
( "--with-icu=" + (if withIcu then "yes" else "no") )
|
|
|
|
];
|
|
|
|
|
2015-10-05 19:26:54 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ glib freetype cairo ] # recommended by upstream
|
2013-10-14 08:36:39 +02:00
|
|
|
++ libintlOrEmpty;
|
|
|
|
propagatedBuildInputs = []
|
2015-10-05 19:26:54 +02:00
|
|
|
++ optional withGraphite2 graphite2
|
|
|
|
++ optionals withIcu [ icu harfbuzz ]
|
2013-10-14 08:36:39 +02:00
|
|
|
;
|
2012-09-27 23:23:36 +02:00
|
|
|
|
2015-10-05 19:26:54 +02: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 07:56:08 +02:00
|
|
|
${optionalString stdenv.isDarwin ''
|
|
|
|
ln -s {'${harfbuzz.out}',"$out"}/lib/libharfbuzz.dylib
|
|
|
|
ln -s {'${harfbuzz.out}',"$out"}/lib/libharfbuzz.0.dylib
|
|
|
|
''}
|
2015-10-05 19:26:54 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2012-09-27 23:23:36 +02:00
|
|
|
description = "An OpenType text shaping engine";
|
|
|
|
homepage = http://www.freedesktop.org/wiki/Software/HarfBuzz;
|
2015-10-05 19:26:54 +02:00
|
|
|
maintainers = [ maintainers.eelco ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2012-09-27 23:23:36 +02:00
|
|
|
};
|
|
|
|
}
|