summary refs log tree commit diff
path: root/pkgs/development/libraries/pangomm
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2011-10-11 20:47:30 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2011-10-11 20:47:30 +0000
commit4289cff0c29e4bd777729369985301480d5b3199 (patch)
tree65447b2a8258f3202c6f006698486e6f99385506 /pkgs/development/libraries/pangomm
parent2ed828052e8eca4e57baf84c59fc99c2b103313f (diff)
downloadnixpkgs-4289cff0c29e4bd777729369985301480d5b3199.tar
nixpkgs-4289cff0c29e4bd777729369985301480d5b3199.tar.gz
nixpkgs-4289cff0c29e4bd777729369985301480d5b3199.tar.bz2
nixpkgs-4289cff0c29e4bd777729369985301480d5b3199.tar.lz
nixpkgs-4289cff0c29e4bd777729369985301480d5b3199.tar.xz
nixpkgs-4289cff0c29e4bd777729369985301480d5b3199.tar.zst
nixpkgs-4289cff0c29e4bd777729369985301480d5b3199.zip
Remove gtkLibs216.*mm
svn path=/nixpkgs/trunk/; revision=29774
Diffstat (limited to 'pkgs/development/libraries/pangomm')
-rw-r--r--pkgs/development/libraries/pangomm/2.14.x.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/development/libraries/pangomm/2.14.x.nix b/pkgs/development/libraries/pangomm/2.14.x.nix
deleted file mode 100644
index 346962c5eaa..00000000000
--- a/pkgs/development/libraries/pangomm/2.14.x.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ 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+";
-  };
-}