summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/development/libraries/atk/1.32.x.nix37
-rw-r--r--pkgs/development/libraries/glib/2.28.x.nix45
-rw-r--r--pkgs/development/libraries/glibmm/2.28.x.nix25
3 files changed, 0 insertions, 107 deletions
diff --git a/pkgs/development/libraries/atk/1.32.x.nix b/pkgs/development/libraries/atk/1.32.x.nix
deleted file mode 100644
index 34fef9048f3..00000000000
--- a/pkgs/development/libraries/atk/1.32.x.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ stdenv, fetchurl_gnome, pkgconfig, perl, glib }:
-
-stdenv.mkDerivation rec {
-  name = src.pkgname;
-
-  src = fetchurl_gnome {
-    project = "atk";
-    major = "1"; minor = "32"; patchlevel = "0";
-    sha256 = "0vmikhrvh1pb31y1ik4n1a99xs7pv4nhb2sgj6pv2kawyycfb8z9";
-  };
-
-  buildNativeInputs = [ pkgconfig perl ];
-
-  propagatedBuildInputs = [ glib ];
-
-  postInstall = "rm -rf $out/share/gtk-doc";
-  
-  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.28.x.nix b/pkgs/development/libraries/glib/2.28.x.nix
deleted file mode 100644
index e41917b3fe4..00000000000
--- a/pkgs/development/libraries/glib/2.28.x.nix
+++ /dev/null
@@ -1,45 +0,0 @@
-{ stdenv, fetchurl_gnome, pkgconfig, gettext, perl, libiconv, zlib }:
-
-# TODO:
-# * Add gio-module-fam
-#     Problem: cyclic dependency on gamin
-#     Possible solution: build as a standalone module, set env. vars
-stdenv.mkDerivation rec {
-  name = src.pkgname;
-
-  src = fetchurl_gnome {
-    project = "glib";
-    major = "2"; minor = "28"; patchlevel = "8"; extension = "xz";
-    sha256 = "0lw3fjsffpnf0cc4j5lkxgllp95qvfq6bir8nh5gds78pmfsjz2d";
-  };
-
-  # configure script looks for d-bus but it is only needed for tests
-  buildInputs = stdenv.lib.optional (!stdenv.isLinux) libiconv;
-  buildNativeInputs = [ perl pkgconfig gettext ];
-
-  propagatedBuildInputs = [ zlib ]
-    ++ stdenv.lib.optional (!stdenv.isLinux) gettext;
-
-  # glib buildsystem fails to find python, thus hardcodes python2.4 in #!
-  postInstall = ''
-    rm -rvf $out/share/gtk-doc
-    sed -e 's@python2\.[0-9]@python@' -i $out/bin/gtester-report'';
-
-  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 = with stdenv.lib.maintainers; [raskin urkud];
-    platforms = stdenv.lib.platforms.linux;
-  };
-}
diff --git a/pkgs/development/libraries/glibmm/2.28.x.nix b/pkgs/development/libraries/glibmm/2.28.x.nix
deleted file mode 100644
index 2c1d9a45c8d..00000000000
--- a/pkgs/development/libraries/glibmm/2.28.x.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ stdenv, fetchurl_gnome, pkgconfig, glib, libsigcxx }:
-
-stdenv.mkDerivation rec {
-  name = src.pkgname;
-
-  src = fetchurl_gnome {
-    project = "glibmm";
-    major = "2"; minor = "28"; patchlevel = "2"; extension = "xz";
-    sha256 = "1qyb8jb9avfzcdyhldxx7qljjhf30czwnh7c2r9p0x4nin2rjkpq";
-  };
-
-  buildNativeInputs = [pkgconfig];
-  propagatedBuildInputs = [glib libsigcxx];
-
-  meta = {
-    description = "C++ interface to the GLib library";
-
-    homepage = http://gtkmm.org/;
-
-    license = "LGPLv2+";
-
-    maintainers = with stdenv.lib.maintainers; [urkud raskin];
-    platforms = stdenv.lib.platforms.linux;
-  };
-}