* wxPython updated to 2.8.12.0.

svn path=/nixpkgs/trunk/; revision=29395
This commit is contained in:
Eelco Dolstra 2011-09-20 11:19:55 +00:00
parent 8e28c8fcfa
commit a3a15545f6

View file

@ -2,14 +2,16 @@
assert wxGTK.unicode; assert wxGTK.unicode;
let version = "2.8.12.1"; in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "wxPython-2.8.12.0"; name = "wxPython-${version}";
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = mirror://sourceforge/wxpython/wxPython-src-2.8.12.0.tar.bz2; url = "mirror://sourceforge/wxpython/wxPython-src-${version}.tar.bz2";
sha256 = "1gdsk1p8ds4jd00habxy4y8m56247a5s1mvq1lm1r6475dvq4pkd"; sha256 = "1l1w4i113csv3bd5r8ybyj0qpxdq83lj6jrc5p7cc10mkwyiagqz";
}; };
buildInputs = [ pkgconfig wxGTK (wxGTK.gtk) pythonPackages.python pythonPackages.wrapPython ]; buildInputs = [ pkgconfig wxGTK (wxGTK.gtk) pythonPackages.python pythonPackages.wrapPython ];