summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk+
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2011-02-09 10:49:20 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2011-02-09 10:49:20 +0000
commitb7052897595a095b7d30501c2442ba53a87078cf (patch)
tree03eb6d3845d67bec1ec776c1912a80e1f5f8376a /pkgs/development/libraries/gtk+
parentb8e7238254ce882b14d31a289ce32293adabef55 (diff)
downloadnixpkgs-b7052897595a095b7d30501c2442ba53a87078cf.tar
nixpkgs-b7052897595a095b7d30501c2442ba53a87078cf.tar.gz
nixpkgs-b7052897595a095b7d30501c2442ba53a87078cf.tar.bz2
nixpkgs-b7052897595a095b7d30501c2442ba53a87078cf.tar.lz
nixpkgs-b7052897595a095b7d30501c2442ba53a87078cf.tar.xz
nixpkgs-b7052897595a095b7d30501c2442ba53a87078cf.tar.zst
nixpkgs-b7052897595a095b7d30501c2442ba53a87078cf.zip
* Remove gtkLibs218 and an old Cairo.
svn path=/nixpkgs/branches/x-updates/; revision=25824
Diffstat (limited to 'pkgs/development/libraries/gtk+')
-rw-r--r--pkgs/development/libraries/gtk+/2.18.x.nix49
1 files changed, 0 insertions, 49 deletions
diff --git a/pkgs/development/libraries/gtk+/2.18.x.nix b/pkgs/development/libraries/gtk+/2.18.x.nix
deleted file mode 100644
index 40ba6e13b22..00000000000
--- a/pkgs/development/libraries/gtk+/2.18.x.nix
+++ /dev/null
@@ -1,49 +0,0 @@
-{ stdenv, fetchurl, pkgconfig, glib, atk, pango, libtiff, libjpeg
-, libpng, cairo, perl, jasper, xlibs
-, xineramaSupport ? true
-, cupsSupport ? true, cups ? null
-}:
-
-assert xineramaSupport -> xlibs.libXinerama != null;
-assert cupsSupport -> cups != null;
-
-stdenv.mkDerivation rec {
-  name = "gtk+-2.18.9";
-  
-  src = fetchurl {
-    url = "mirror://gnome/sources/gtk+/2.18/${name}.tar.bz2";
-    sha256 = "5dcd8c406acbb8779c0b081a089fa87dfd7ab4d7d4c6075db478997ce96aa9b4";
-  };
-  
-  buildNativeInputs = [ perl ];
-  buildInputs = [ pkgconfig jasper ];
-  
-  propagatedBuildInputs =
-    [ xlibs.xlibs glib atk pango libtiff libjpeg libpng cairo xlibs.libXrandr ]
-    ++ stdenv.lib.optional xineramaSupport xlibs.libXinerama
-    ++ stdenv.lib.optionals cupsSupport [ cups ];
-
-  passthru = { inherit libtiff libjpeg libpng; };
-
-  meta = {
-    description = "A multi-platform toolkit for creating graphical user interfaces";
-
-    longDescription = ''
-      GTK+ is a highly usable, feature rich toolkit for creating
-      graphical user interfaces which boasts cross platform
-      compatibility and an easy to use API.  GTK+ it is written in C,
-      but has bindings to many other popular programming languages
-      such as C++, Python and C# among others.  GTK+ is licensed
-      under the GNU LGPL 2.1 allowing development of both free and
-      proprietary software with GTK+ without any license fees or
-      royalties.
-    '';
-
-    homepage = http://www.gtk.org/;
-
-    license = "LGPLv2+";
-
-    maintainers = [stdenv.lib.maintainers.raskin];
-    platforms = stdenv.lib.platforms.linux;
-  };
-}