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