summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk+
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2011-09-19 10:03:14 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2011-09-19 10:03:14 +0000
commit071700bcbc8f4a9e9e742627b9555f3076516c17 (patch)
tree984f6f1cb718bf89cb9d9f046d416e7c9e99b94d /pkgs/development/libraries/gtk+
parent63959f2a5aa7a337b569ed8a3b6a0a236100b1f2 (diff)
downloadnixpkgs-071700bcbc8f4a9e9e742627b9555f3076516c17.tar
nixpkgs-071700bcbc8f4a9e9e742627b9555f3076516c17.tar.gz
nixpkgs-071700bcbc8f4a9e9e742627b9555f3076516c17.tar.bz2
nixpkgs-071700bcbc8f4a9e9e742627b9555f3076516c17.tar.lz
nixpkgs-071700bcbc8f4a9e9e742627b9555f3076516c17.tar.xz
nixpkgs-071700bcbc8f4a9e9e742627b9555f3076516c17.tar.zst
nixpkgs-071700bcbc8f4a9e9e742627b9555f3076516c17.zip
Remove unused files
svn path=/nixpkgs/trunk/; revision=29343
Diffstat (limited to 'pkgs/development/libraries/gtk+')
-rw-r--r--pkgs/development/libraries/gtk+/2.20.x.nix49
1 files changed, 0 insertions, 49 deletions
diff --git a/pkgs/development/libraries/gtk+/2.20.x.nix b/pkgs/development/libraries/gtk+/2.20.x.nix
deleted file mode 100644
index 53ad76ced53..00000000000
--- a/pkgs/development/libraries/gtk+/2.20.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.20.1";
-  
-  src = fetchurl {
-    url = "mirror://gnome/sources/gtk+/2.20/${name}.tar.bz2";
-    sha256 = "0e081731d21e34ff45c82199490c2889504fa8b3c7e117c043e82ababaec0f65";
-  };
-  
-  buildNativeInputs = [ perl ];
-  buildInputs = [ pkgconfig jasper ];
-  
-  propagatedBuildInputs =
-    [ xlibs.xlibs glib atk pango libtiff libjpeg libpng cairo xlibs.libXrandr xlibs.libXrender ]
-    ++ 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;
-  };
-}