2013-06-19 08:59:30 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, x11, glib, cairo, libpng, harfbuzz, fontconfig
|
|
|
|
, libintlOrEmpty }:
|
2011-09-20 18:18:12 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-01-29 16:11:34 +01:00
|
|
|
name = "pango-1.32.5"; #.6 needs a not-yet-stable fontconfig
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2012-02-07 22:03:12 +01:00
|
|
|
src = fetchurl {
|
2013-01-29 16:11:34 +01:00
|
|
|
url = "mirror://gnome/sources/pango/1.32/${name}.tar.xz";
|
|
|
|
sha256 = "08aqis6j8nd1lb4f2h4h9d9kjvp54iwf8zvqzss0qn4v7nfcjyvx";
|
2011-09-20 18:18:12 +02:00
|
|
|
};
|
|
|
|
|
2013-06-13 10:11:36 +02:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${cairo}/include/cairo";
|
|
|
|
|
2013-03-14 15:18:55 +01:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ gettext fontconfig ];
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2013-06-19 08:59:30 +02:00
|
|
|
propagatedBuildInputs = [ x11 glib cairo libpng harfbuzz ] ++ libintlOrEmpty;
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2012-05-16 23:58:57 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-09-20 18:18:12 +02: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/;
|
|
|
|
license = "LGPLv2+";
|
|
|
|
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ raskin urkud ];
|
2012-05-09 23:10:12 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2011-09-20 18:18:12 +02:00
|
|
|
};
|
|
|
|
}
|