2004-02-17 20:19:26 +01:00
|
|
|
{stdenv, fetchurl, wxGTK, python}:
|
|
|
|
|
|
|
|
assert wxGTK.compat22;
|
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2004-02-17 20:19:26 +01:00
|
|
|
name = "wxPython-2.4.2.4";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://heanet.dl.sourceforge.net/sourceforge/wxpython/wxPythonSrc-2.4.2.4.tar.gz;
|
|
|
|
md5 = "ea4eb68e10a0c2a9be643b35dcb78e41";
|
|
|
|
};
|
|
|
|
pkgconfig = wxGTK.pkgconfig;
|
|
|
|
gtk = wxGTK.gtk;
|
2004-03-29 19:23:01 +02:00
|
|
|
inherit wxGTK python;
|
2004-02-17 20:19:26 +01:00
|
|
|
}
|