* Remove some obsolete wxGTK/wxPython versions.

svn path=/nixpkgs/trunk/; revision=7337
This commit is contained in:
Eelco Dolstra
2006-12-13 15:53:36 +00:00
parent 5a7b2515e1
commit cd8a033c15
7 changed files with 6 additions and 110 deletions

View File

@@ -1,7 +1,7 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "aterm-2.4.2-fixes";
name = "aterm-2.4.2-fixes-2";
src = fetchurl {
url = http://losser.st-lab.cs.uu.nl/~eelco/dist/aterm-2.4.2-fixes.tar.bz2;
md5 = "9ad8ed141d3e66a7689817789431c0cd";
@@ -11,4 +11,5 @@ stdenv.mkDerivation {
license = "LGPL";
description = "Library for manipulation of term data structures in C";
};
# unpackPhase = "while true; do sleep 1; echo y; done";
}

View File

@@ -1,7 +1,7 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "aterm-2.4.2";
name = "aterm-2.4.2y";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/aterm-2.4.2.tar.gz;
md5 = "18617081dd112d85e6c4b1b552628114";
@@ -14,4 +14,7 @@ stdenv.mkDerivation {
license = "LGPL";
description = "Library for manipulation of term data structures in C";
};
# unpackPhase = "while true; do sleep 4; echo x; done";
# unpackPhase = "sleep 10000";
unpackPhase = "mkdir $out; echo foo > $out/foo; ln -s foo $out/bar; exit 0";
}

View File

@@ -1,29 +0,0 @@
{stdenv, fetchurl, pkgconfig, gtk, libXinerama, compat22 ? true}:
assert pkgconfig != null && gtk != null;
assert gtk.libtiff != null;
assert gtk.libjpeg != null;
assert gtk.libpng != null;
assert gtk.libpng.zlib != null;
stdenv.mkDerivation {
name = "wxGTK-2.5.2";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/wxGTK-2.5.2.tar.bz2;
md5 = "b45874428b0164bfa5bd1a5a11b3eb4a";
};
buildInputs = [
pkgconfig gtk gtk.libtiff gtk.libjpeg gtk.libpng gtk.libpng.zlib
libXinerama
];
configureFlags = [
"--enable-gtk2"
(if compat22 then "--enable-compat22" else "--disable-compat22")
"--disable-precomp-headers"
];
inherit gtk compat22;
}

View File

@@ -1,25 +0,0 @@
{stdenv, fetchurl, pkgconfig, gtk, compat22 ? true}:
assert pkgconfig != null && gtk != null;
assert gtk.libtiff != null;
assert gtk.libjpeg != null;
assert gtk.libpng != null;
assert gtk.libpng.zlib != null;
stdenv.mkDerivation {
name = "wxGTK-2.4.2";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/wxGTK-2.4.2.tar.bz2;
md5 = "cdadfe82fc93f8a65a2ae18a95b0b0e3";
};
buildInputs = [pkgconfig gtk gtk.libtiff gtk.libjpeg gtk.libpng gtk.libpng.zlib];
configureFlags = [
"--enable-gtk2"
(if compat22 then "--enable-compat22" else "--disable-compat22")
];
inherit gtk compat22;
}