2014-02-02 10:57:35 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, x11, glib, cairo, libpng, harfbuzz
|
|
|
|
, fontconfig, freetype, libintlOrEmpty, gobjectIntrospection
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
ver_maj = "1.36";
|
|
|
|
ver_min = "1";
|
|
|
|
in
|
2011-09-20 18:18:12 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2014-02-02 10:57:35 +01:00
|
|
|
name = "pango-${ver_maj}.${ver_min}";
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2012-02-07 22:03:12 +01:00
|
|
|
src = fetchurl {
|
2014-02-02 10:57:35 +01:00
|
|
|
url = "mirror://gnome/sources/pango/${ver_maj}/${name}.tar.xz";
|
|
|
|
sha256 = "1y2r1v4m8g4afggjd1siz0ri175p64myz9d2ks58grlrvhfbbr22";
|
2011-09-20 18:18:12 +02:00
|
|
|
};
|
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-02-02 10:57:35 +01:00
|
|
|
buildInputs = [ gobjectIntrospection ];
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2014-02-02 10:57:35 +01:00
|
|
|
propagatedBuildInputs = [ x11 glib cairo libpng fontconfig freetype harfbuzz ] ++ libintlOrEmpty;
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2012-05-16 23:58:57 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-02-02 13:31:36 +01:00
|
|
|
#doCheck = true; # testiter fails to find fontconfig configuration
|
2014-02-02 10:57:35 +01:00
|
|
|
|
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 ];
|
2013-12-10 23:20:23 +01:00
|
|
|
hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2011-09-20 18:18:12 +02:00
|
|
|
};
|
|
|
|
}
|