2014-02-20 20:35:42 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, x11, glib, cairo, libpng, harfbuzz, fontconfig
|
|
|
|
, libintlOrEmpty, gobjectIntrospection }:
|
|
|
|
|
2011-09-20 16:18:12 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-02-20 20:35:42 +00:00
|
|
|
name = "pango-1.32.5"; #.6 and higher need fontconfig-2.11.* which is troublesome
|
2011-09-20 16:18:12 +00:00
|
|
|
|
2012-02-07 21:03:12 +00:00
|
|
|
src = fetchurl {
|
2014-02-20 20:35:42 +00:00
|
|
|
url = "mirror://gnome/sources/pango/1.32/${name}.tar.xz";
|
|
|
|
sha256 = "08aqis6j8nd1lb4f2h4h9d9kjvp54iwf8zvqzss0qn4v7nfcjyvx";
|
2011-09-20 16:18:12 +00:00
|
|
|
};
|
|
|
|
|
2014-02-20 20:35:42 +00:00
|
|
|
buildInputs = [ gobjectIntrospection ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ gettext fontconfig ];
|
|
|
|
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-09-20 16:18:12 +00:00
|
|
|
|
2014-02-20 20:35:42 +00:00
|
|
|
propagatedBuildInputs = [ x11 glib cairo libpng harfbuzz ] ++ libintlOrEmpty;
|
2011-09-20 16:18:12 +00:00
|
|
|
|
2012-05-16 21:58:57 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-02-20 20:35:42 +00:00
|
|
|
doCheck = true;
|
2011-09-20 16:18:12 +00: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 ];
|
2013-12-10 22:20:23 +00:00
|
|
|
hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2011-09-20 16:18:12 +00:00
|
|
|
};
|
|
|
|
}
|