a7d4f19ab3
* wxPython builder: wrap the Python programs (such as pyshell) so that they actually work. svn path=/nixpkgs/trunk/; revision=27122
19 lines
466 B
Nix
19 lines
466 B
Nix
{ stdenv, fetchurl, pkgconfig, wxGTK, pythonPackages }:
|
|
|
|
assert wxGTK.unicode;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "wxPython-2.8.12.0";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/wxpython/wxPython-src-2.8.12.0.tar.bz2;
|
|
sha256 = "1gdsk1p8ds4jd00habxy4y8m56247a5s1mvq1lm1r6475dvq4pkd";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig wxGTK (wxGTK.gtk) pythonPackages.python pythonPackages.wrapPython ];
|
|
|
|
passthru = { inherit wxGTK; };
|
|
}
|