summary refs log tree commit diff
path: root/pkgs/development/libraries/glib
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/glib
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/glib')
-rw-r--r--pkgs/development/libraries/glib/2.24.x.nix34
1 files changed, 0 insertions, 34 deletions
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;
-  };
-}