summary refs log tree commit diff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-02-02 14:29:40 +0000
committerLudovic Courtès <ludo@gnu.org>2009-02-02 14:29:40 +0000
commit2a89f2ea99a75003350677055d6b12dc203a9ebd (patch)
tree4fe9cafaf090b553220cbd0082f58272f506e822
parent79a039080c1f3259037b8ad5da3037e72ebea051 (diff)
downloadnixlib-2a89f2ea99a75003350677055d6b12dc203a9ebd.tar
nixlib-2a89f2ea99a75003350677055d6b12dc203a9ebd.tar.gz
nixlib-2a89f2ea99a75003350677055d6b12dc203a9ebd.tar.bz2
nixlib-2a89f2ea99a75003350677055d6b12dc203a9ebd.tar.lz
nixlib-2a89f2ea99a75003350677055d6b12dc203a9ebd.tar.xz
nixlib-2a89f2ea99a75003350677055d6b12dc203a9ebd.tar.zst
nixlib-2a89f2ea99a75003350677055d6b12dc203a9ebd.zip
Add Pangomm 2.14.1, omitted in previous commits.
svn path=/nixpkgs/trunk/; revision=13953
-rw-r--r--pkgs/development/libraries/gtk-libs/2.14/pangomm/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gtk-libs/2.14/pangomm/default.nix b/pkgs/development/libraries/gtk-libs/2.14/pangomm/default.nix
new file mode 100644
index 000000000000..ca43437574e5
--- /dev/null
+++ b/pkgs/development/libraries/gtk-libs/2.14/pangomm/default.nix
@@ -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+";
+  };
+}