summary refs log tree commit diff
path: root/pkgs/development/python-modules/wxPython/builder.sh
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/wxPython/builder.sh')
-rw-r--r--pkgs/development/python-modules/wxPython/builder.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/wxPython/builder.sh b/pkgs/development/python-modules/wxPython/builder.sh
deleted file mode 100644
index ed7177081f9f..000000000000
--- a/pkgs/development/python-modules/wxPython/builder.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-source $stdenv/setup
-
-flags="WXPORT=gtk2 NO_HEADERS=1 BUILD_GLCANVAS=0 BUILD_OGL=0 UNICODE=1"
-
-configurePhase() {
-    cd wxPython
-}
-
-buildPhase() {
-    python setup.py $flags build
-}
-
-installPhase() {
-    python setup.py $flags install --prefix=$out
-}
-
-genericBuild