2004-04-02 17:36:14 +02:00
|
|
|
{stdenv, fetchurl, pkgconfig, wxGTK, python}:
|
2004-02-17 20:19:26 +01:00
|
|
|
|
2007-05-31 16:02:16 +02:00
|
|
|
assert wxGTK.unicode;
|
2004-02-17 20:19:26 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2006-12-13 21:30:09 +01:00
|
|
|
name = "wxPython-2.6.3.3";
|
2004-02-17 20:19:26 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2007-08-27 15:01:33 +02:00
|
|
|
url = mirror://sourceforge/wxpython/wxPython-src-2.6.3.3.tar.bz2;
|
2006-12-13 21:30:09 +01:00
|
|
|
md5 = "66b9c5f8e20a9505c39dab1a1234daa9";
|
2004-02-17 20:19:26 +01:00
|
|
|
};
|
2004-04-02 17:36:14 +02:00
|
|
|
buildInputs = [pkgconfig wxGTK (wxGTK.gtk) python];
|
|
|
|
inherit wxGTK; # !!! move this down
|
2006-12-13 21:30:09 +01:00
|
|
|
}
|