2014-10-19 19:28:23 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, x11, glib, cairo, libpng, harfbuzz
|
|
|
|
, fontconfig, freetype, libintlOrEmpty, gobjectIntrospection
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
ver_maj = "1.36";
|
|
|
|
ver_min = "8";
|
|
|
|
in
|
2011-09-20 17:18:12 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-19 19:28:23 +01:00
|
|
|
name = "pango-${ver_maj}.${ver_min}";
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2012-02-07 21:03:12 +00:00
|
|
|
src = fetchurl {
|
2014-10-19 19:28:23 +01:00
|
|
|
url = "mirror://gnome/sources/pango/${ver_maj}/${name}.tar.xz";
|
|
|
|
sha256 = "01rdzjh68w8l5zn0648yibyarj8p6g7yfn59nw5awaz1i8dvbnqq";
|
2011-09-20 17:18:12 +01:00
|
|
|
};
|
|
|
|
|
2014-04-10 19:37:52 +01:00
|
|
|
buildInputs = with stdenv.lib;
|
2014-04-11 08:55:46 +01:00
|
|
|
optional (!stdenv.isDarwin) gobjectIntrospection # build problems of itself and flex
|
2014-10-23 17:45:37 +01:00
|
|
|
++ optionals stdenv.isDarwin [ fontconfig ];
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2014-10-19 19:28:23 +01:00
|
|
|
propagatedBuildInputs = [ x11 glib cairo libpng fontconfig freetype harfbuzz ] ++ libintlOrEmpty;
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2012-05-16 22:58:57 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-10-19 19:28:23 +01:00
|
|
|
doCheck = false; # test-layout fails on 1.36.8
|
2014-05-12 22:53:11 +01:00
|
|
|
# jww (2014-05-05): The tests currently fail on Darwin:
|
|
|
|
#
|
|
|
|
# ERROR:testiter.c:139:iter_char_test: assertion failed: (extents.width == x1 - x0)
|
|
|
|
# .../bin/sh: line 5: 14823 Abort trap: 6 srcdir=. PANGO_RC_FILE=./pangorc ${dir}$tst
|
|
|
|
# FAIL: testiter
|
2014-10-19 19:28:23 +01:00
|
|
|
|
2011-09-20 17:18:12 +01:00
|
|
|
postInstall = "rm -rf $out/share/gtk-doc";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A library for laying out and rendering of text, with an emphasis on internationalization";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Pango is a library for laying out and rendering of text, with an
|
|
|
|
emphasis on internationalization. Pango can be used anywhere
|
|
|
|
that text layout is needed, though most of the work on Pango so
|
|
|
|
far has been done in the context of the GTK+ widget toolkit.
|
|
|
|
Pango forms the core of text and font handling for GTK+-2.x.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.pango.org/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2011-09-20 17:18:12 +01:00
|
|
|
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ raskin urkud ];
|
2013-12-10 22:20:23 +00:00
|
|
|
hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2011-09-20 17:18:12 +01:00
|
|
|
};
|
|
|
|
}
|