Add wxPython-3.0 with OpenGL support.

This commit is contained in:
ambrop7@gmail.com
2014-03-25 22:32:39 +01:00
parent ae8a8b5deb
commit 93d313c0ed
3 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
source $stdenv/setup
flags="WXPORT=gtk2 NO_HEADERS=1 BUILD_GLCANVAS=${openglSupport?1:0} UNICODE=1"
configurePhase() {
cd wxPython
}
buildPhase() {
python setup.py $flags build
}
installPhase() {
python setup.py $flags install --prefix=$out
# Ugly workaround for Nixpkgs/111.
ln -s $out/lib/python*/site-packages/wx-*-gtk2-unicode/* $out/lib/python*/site-packages
wrapPythonPrograms
}
genericBuild