3
0
Fork 0
forked from mirrors/nixpkgs

gtk-libs-2.6 removed

svn path=/nixpkgs/branches/stdenv-updates/; revision=10479
This commit is contained in:
Yury G. Kudryashov 2008-02-03 13:19:03 +00:00
parent 00af084c1c
commit 465316c02b
8 changed files with 0 additions and 112 deletions

View file

@ -1,13 +0,0 @@
{stdenv, fetchurl, pkgconfig, glib, perl}:
assert pkgconfig != null && glib != null && perl != null;
stdenv.mkDerivation {
name = "atk-1.9.0";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/atk-1.9.0.tar.bz2;
md5 = "7f41bd9c6dcd83c8df391dc1805be653";
};
buildInputs = [pkgconfig perl];
propagatedBuildInputs = [glib];
}

View file

@ -1,23 +0,0 @@
{ stdenv, fetchurl, pkgconfig, gettext, perl, x11
, libtiff, libjpeg, libpng}:
rec {
glib = (import ./glib) {
inherit fetchurl stdenv pkgconfig gettext perl;
};
atk = (import ./atk) {
inherit fetchurl stdenv pkgconfig glib perl;
};
pango = (import ./pango) {
inherit fetchurl stdenv pkgconfig glib x11;
};
gtk = (import ./gtk+) {
inherit fetchurl stdenv pkgconfig glib atk pango perl
libtiff libjpeg libpng x11;
};
}

View file

@ -1,12 +0,0 @@
{stdenv, fetchurl, pkgconfig, gettext, perl}:
assert pkgconfig != null && gettext != null && perl != null;
stdenv.mkDerivation {
name = "glib-2.6.6";
src = fetchurl {
url = ftp://ftp.gtk.org/pub/gtk/v2.6/glib-2.6.6.tar.bz2;
md5 = "6e22b0639d314536f23ee118f29b43de";
};
buildInputs = [pkgconfig gettext perl];
}

View file

@ -1,12 +0,0 @@
{stdenv, fetchurl, pkgconfig, glib, libsigcxx}:
stdenv.mkDerivation {
name = "glibmm-2.6.4";
src = fetchurl {
url = http://ftp.gnome.org/pub/GNOME/sources/glibmm/2.6/glibmm-2.6.1.tar.bz2;
md5 = "e37da352bf581503c5866f0231fd4a74";
};
buildInputs = [pkgconfig glib libsigcxx];
}

View file

@ -1,21 +0,0 @@
{ stdenv, fetchurl, pkgconfig, x11, glib, atk
, pango, perl, libtiff, libjpeg, libpng}:
assert pkgconfig != null && x11 != null && glib != null && atk != null
&& pango != null && perl != null && perl != null && libtiff != null
&& libjpeg != null && libpng != null;
assert x11.buildClientLibs;
#assert glib == atk.glib;
#assert glib == pango.glib;
#assert x11 == pango.x11;
stdenv.mkDerivation {
name = "gtk+-2.6.10";
src = fetchurl {
url = ftp://ftp.gtk.org/pub/gtk/v2.6/gtk+-2.6.10.tar.bz2;
md5 = "520090ef291e35ba93397060e20f5025";
};
buildInputs = [pkgconfig perl libtiff libjpeg libpng];
propagatedBuildInputs = [x11 glib atk pango];
inherit libtiff libjpeg libpng;
}

View file

@ -1,12 +0,0 @@
{ stdenv, fetchurl, pkgconfig, gtk, atk, glibmm, libsigcxx}:
stdenv.mkDerivation {
name = "gtkmm-2.6.4";
src = fetchurl {
url = http://ftp.gnome.org/pub/GNOME/sources/gtkmm/2.6/gtkmm-2.6.4.tar.bz2;
md5 = "f71d1c4a89c4f9e054400f12a82dec5f";
};
buildInputs = [pkgconfig gtk atk glibmm libsigcxx];
}

View file

@ -1,14 +0,0 @@
{stdenv, fetchurl, pkgconfig, x11, glib}:
assert pkgconfig != null && x11 != null && glib != null;
assert x11.buildClientLibs;
stdenv.mkDerivation {
name = "pango-1.8.2";
src = fetchurl {
url = ftp://ftp.gtk.org/pub/gtk/v2.6/pango-1.8.2.tar.bz2;
md5 = "f5b5da7a173f0566d8217ec112fde993";
};
buildInputs = [pkgconfig];
propagatedBuildInputs = [x11 glib];
}

View file

@ -2001,11 +2001,6 @@ rec {
xineramaSupport = true;
};
gtkLibs26 = import ../development/libraries/gtk-libs/2.6 {
inherit fetchurl stdenv pkgconfig gettext perl x11
libtiff libjpeg libpng;
};
gtkmozembedsharp = import ../development/libraries/gtkmozembed-sharp {
inherit fetchurl stdenv mono pkgconfig monoDLLFixer;
inherit (gnome) gtk;