2004-04-02 16:36:14 +01:00
|
|
|
{stdenv, fetchurl, pkgconfig, wxGTK, python}:
|
2004-02-17 19:19:26 +00:00
|
|
|
|
|
|
|
assert wxGTK.compat22;
|
|
|
|
|
2004-03-29 18:23:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2004-02-17 19:19:26 +00:00
|
|
|
name = "wxPython-2.4.2.4";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2005-08-22 09:39:27 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/wxPythonSrc-2.4.2.4.tar.gz;
|
2004-02-17 19:19:26 +00:00
|
|
|
md5 = "ea4eb68e10a0c2a9be643b35dcb78e41";
|
|
|
|
};
|
2004-04-02 16:36:14 +01:00
|
|
|
buildInputs = [pkgconfig wxGTK (wxGTK.gtk) python];
|
|
|
|
inherit wxGTK; # !!! move this down
|
|
|
|
} // { inherit python; }
|