nixpkgs/pkgs/development/libraries/pangomm/2.28.x.nix
Karn Kallio f94927717c Fix failing pangomm build.
svn path=/nixpkgs/trunk/; revision=31397
2012-01-07 13:19:13 +00:00

33 lines
1 KiB
Nix

{ stdenv, fetchurl, pkgconfig, pango, glibmm, cairomm, libpng, xz }:
stdenv.mkDerivation rec {
name = "pangomm-2.28.4";
src = fetchurl {
url = mirror://gnome/sources/pangomm/2.28/pangomm-2.28.4.tar.xz;
sha256 = "10kcdpg080m393f1vz0km41kd3483fkyabprm59gvjwklxkcp3bp";
};
buildInputs = [ xz];
buildNativeInputs = [ pkgconfig ];
propagatedBuildInputs = [ pango glibmm cairomm libpng ];
meta = {
description = "C++ interface to the Pango text rendering library";
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 = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
};
}