about summary refs log tree commit diff
path: root/pkgs/development/libraries/gtkmm
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/gtkmm
parent2ed828052e8eca4e57baf84c59fc99c2b103313f (diff)
Remove gtkLibs216.*mm
svn path=/nixpkgs/trunk/; revision=29774
Diffstat (limited to 'pkgs/development/libraries/gtkmm')
-rw-r--r--pkgs/development/libraries/gtkmm/2.14.x.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/development/libraries/gtkmm/2.14.x.nix b/pkgs/development/libraries/gtkmm/2.14.x.nix
deleted file mode 100644
index 74b234d8e4b6b..0000000000000
--- a/pkgs/development/libraries/gtkmm/2.14.x.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ stdenv, fetchurl, pkgconfig, gtk, atk, glibmm, cairomm, pangomm }:
-
-stdenv.mkDerivation rec {
-  name = "gtkmm-2.14.3";
-
-  src = fetchurl {
-    url = "mirror://gnome/sources/gtkmm/2.14/${name}.tar.bz2";
-    sha256 = "18jral2lv9jv02d3balh0mi0wgbqhrz5y2laclri1skccc2q3c94";
-  };
-
-  buildInputs = [pkgconfig];
-  propagatedBuildInputs = [ glibmm gtk atk cairomm pangomm ];
-
-  meta = {
-    description = "C++ interface to the GTK+ graphical user interface library";
-
-    longDescription = ''
-      gtkmm is the official C++ interface for the popular GUI library
-      GTK+.  Highlights include typesafe callbacks, and a
-      comprehensive set of widgets that are easily extensible via
-      inheritance.  You can create user interfaces either in code or
-      with the Glade User Interface designer, using libglademm.
-      There's extensive documentation, including API reference and a
-      tutorial.
-    '';
-
-    homepage = http://gtkmm.org/;
-
-    license = "LGPLv2+";
-  };
-}