2004-04-02 17:36:14 +02:00
|
|
|
{stdenv, fetchurl, pkgconfig, wxGTK, python}:
|
2004-02-17 20:19:26 +01:00
|
|
|
|
|
|
|
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 {
|
2005-08-22 10:39:27 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/wxPythonSrc-2.4.2.4.tar.gz;
|
2004-02-17 20:19:26 +01:00
|
|
|
md5 = "ea4eb68e10a0c2a9be643b35dcb78e41";
|
|
|
|
};
|
2004-04-02 17:36:14 +02:00
|
|
|
buildInputs = [pkgconfig wxGTK (wxGTK.gtk) python];
|
|
|
|
inherit wxGTK; # !!! move this down
|
|
|
|
} // { inherit python; }
|