2012-02-10 11:24:30 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, x11, glib, cairo, libpng }:
|
2011-09-20 18:18:12 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-02-07 22:03:12 +01:00
|
|
|
name = "pango-1.29.4";
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2012-02-07 22:03:12 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://gnome/sources/pango/1.29/pango-1.29.4.tar.xz;
|
2011-10-09 10:38:34 +02:00
|
|
|
sha256 = "0zqjq6ccv6mbah74rcvb03ksq1jwan21z37mdmqa56307sax3s3s";
|
2011-09-20 18:18:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin gettext;
|
|
|
|
|
2012-01-18 21:53:01 +01:00
|
|
|
buildNativeInputs = [ pkgconfig ];
|
2011-09-20 18:18:12 +02:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ x11 glib cairo libpng ];
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|