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

15 lines
381 B
Nix
Raw Normal View History

{stdenv, fetchurl, pkgconfig, wxGTK, python}:
2004-02-17 19:19:26 +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 {
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
};
buildInputs = [pkgconfig wxGTK (wxGTK.gtk) python];
inherit wxGTK; # !!! move this down
2006-12-13 20:30:09 +00:00
}