summary refs log tree commit diff
path: root/pkgs/development/libraries/pangomm
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-10-28 15:31:52 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-10-28 15:31:52 +0000
commit82baac23a73910bfd35d6711ff89d922e4ebc919 (patch)
tree4c09e38970b6adc78fe0bc65e4d3ad6d4f8a26eb /pkgs/development/libraries/pangomm
parent5398eceff34b4db602e98255b3400f9a822c465b (diff)
downloadnixpkgs-82baac23a73910bfd35d6711ff89d922e4ebc919.tar
nixpkgs-82baac23a73910bfd35d6711ff89d922e4ebc919.tar.gz
nixpkgs-82baac23a73910bfd35d6711ff89d922e4ebc919.tar.bz2
nixpkgs-82baac23a73910bfd35d6711ff89d922e4ebc919.tar.lz
nixpkgs-82baac23a73910bfd35d6711ff89d922e4ebc919.tar.xz
nixpkgs-82baac23a73910bfd35d6711ff89d922e4ebc919.tar.zst
nixpkgs-82baac23a73910bfd35d6711ff89d922e4ebc919.zip
* Idem for gtk-libs/2.16.
svn path=/nixpkgs/trunk/; revision=17993
Diffstat (limited to 'pkgs/development/libraries/pangomm')
-rw-r--r--pkgs/development/libraries/pangomm/2.14.x.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/libraries/pangomm/2.14.x.nix b/pkgs/development/libraries/pangomm/2.14.x.nix
new file mode 100644
index 00000000000..346962c5eaa
--- /dev/null
+++ b/pkgs/development/libraries/pangomm/2.14.x.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl, pkgconfig, pango, glibmm, cairomm, libpng }:
+
+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+";
+  };
+}