Files
nixpkgs/pkgs/development/python-modules/wxPython/default.nix
T

15 lines
396 B
Nix
Raw Normal View History

{stdenv, fetchurl, pkgconfig, wxGTK, python}:
2004-02-17 19:19:26 +00:00
assert wxGTK.compat22;
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 {
2006-12-13 20:30:09 +00:00
url = http://prdownloads.sourceforge.net/wxpython/wxPython-src-2.6.3.3.tar.bz2;
md5 = "66b9c5f8e20a9505c39dab1a1234daa9";
2004-02-17 19:19:26 +00:00
};
buildInputs = [pkgconfig wxGTK (wxGTK.gtk) python];
inherit wxGTK; # !!! move this down
2006-12-13 20:30:09 +00:00
}