From 071700bcbc8f4a9e9e742627b9555f3076516c17 Mon Sep 17 00:00:00 2001 From: "Yury G. Kudryashov" Date: Mon, 19 Sep 2011 10:03:14 +0000 Subject: [PATCH] Remove unused files svn path=/nixpkgs/trunk/; revision=29343 --- pkgs/development/libraries/atk/1.30.x.nix | 33 --------------- pkgs/development/libraries/glib/2.24.x.nix | 34 --------------- pkgs/development/libraries/gtk+/2.20.x.nix | 49 ---------------------- 3 files changed, 116 deletions(-) delete mode 100644 pkgs/development/libraries/atk/1.30.x.nix delete mode 100644 pkgs/development/libraries/glib/2.24.x.nix delete mode 100644 pkgs/development/libraries/gtk+/2.20.x.nix diff --git a/pkgs/development/libraries/atk/1.30.x.nix b/pkgs/development/libraries/atk/1.30.x.nix deleted file mode 100644 index 4f370fd7a2b..00000000000 --- a/pkgs/development/libraries/atk/1.30.x.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ stdenv, fetchurl, pkgconfig, perl, glib }: - -stdenv.mkDerivation rec { - name = "atk-1.30.0"; - - src = fetchurl { - url = "mirror://gnome/sources/atk/1.30/${name}.tar.bz2"; - sha256 = "92b9b1213cafc68fe9c3806273b968c26423237d7b1f631dd83dc5270b8c268c"; - }; - - buildInputs = [ pkgconfig perl ]; - propagatedBuildInputs = [ glib ]; - - meta = { - description = "ATK, the accessibility toolkit"; - - longDescription = '' - ATK is the Accessibility Toolkit. It provides a set of generic - interfaces allowing accessibility technologies such as screen - readers to interact with a graphical user interface. Using the - ATK interfaces, accessibility tools have full access to view and - control running applications. - ''; - - homepage = http://library.gnome.org/devel/atk/; - - license = "LGPLv2+"; - - maintainers = [stdenv.lib.maintainers.raskin]; - platforms = stdenv.lib.platforms.linux; - }; - -} diff --git a/pkgs/development/libraries/glib/2.24.x.nix b/pkgs/development/libraries/glib/2.24.x.nix deleted file mode 100644 index db7dbdd5c18..00000000000 --- a/pkgs/development/libraries/glib/2.24.x.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ stdenv, fetchurl, pkgconfig, gettext, perl, libiconv, zlib }: - -stdenv.mkDerivation rec { - name = "glib-2.24.2"; - - src = fetchurl { - url = "mirror://gnome/sources/glib/2.24/${name}.tar.bz2"; - sha256 = "030nl16xa2ps9bklm2l81w0yamsrj5a0x7rp4h9dshinpld55srs"; - }; - - buildInputs = [ pkgconfig gettext ] - ++ stdenv.lib.optional (!stdenv.isLinux) libiconv; - buildNativeInputs = [ perl ]; - - propagatedBuildInputs = [ zlib ]; - - meta = { - description = "GLib, a C library of programming buildings blocks"; - - longDescription = '' - GLib provides the core application building blocks for libraries - and applications written in C. It provides the core object - system used in GNOME, the main loop implementation, and a large - set of utility functions for strings and common data structures. - ''; - - homepage = http://www.gtk.org/; - - license = "LGPLv2+"; - - maintainers = [stdenv.lib.maintainers.raskin]; - platforms = stdenv.lib.platforms.linux; - }; -} 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; - }; -}