mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
Add Pangomm 2.14.1, omitted in previous commits.
svn path=/nixpkgs/trunk/; revision=13953
This commit is contained in:
parent
79a039080c
commit
2a89f2ea99
28
pkgs/development/libraries/gtk-libs/2.14/pangomm/default.nix
Normal file
28
pkgs/development/libraries/gtk-libs/2.14/pangomm/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
args: with args;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name ="pangomm-2.14.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/pangomm/2.14/${name}.tar.bz2";
|
||||
sha256 = "0mrm5hv8kb84qzb97lqbipzzc8g0b97pfgz2hqq33xs2ha3lswnp";
|
||||
};
|
||||
|
||||
buildInputs = [ 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+";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue