summary refs log tree commit diff
path: root/pkgs/development/python-modules/wxPython/2.8.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/wxPython/2.8.nix')
-rw-r--r--pkgs/development/python-modules/wxPython/2.8.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/wxPython/2.8.nix b/pkgs/development/python-modules/wxPython/2.8.nix
new file mode 100644
index 000000000000..5cab740f8c3b
--- /dev/null
+++ b/pkgs/development/python-modules/wxPython/2.8.nix
@@ -0,0 +1,14 @@
+{stdenv, fetchurl, pkgconfig, wxGTK, python}:
+
+assert wxGTK.unicode;
+
+stdenv.mkDerivation {
+  name = "wxPython-2.8.4.0";
+  builder = ./builder.sh;
+  src = fetchurl {
+    url = mirror://sourceforge/wxpython/wxPython-src-2.8.4.0.tar.bz2;
+    sha256 = "0lkj29jcw3kqaf2iphgmmn9cqf2ppkm6qqr9izlx4bvn9dihgq6h";
+  };
+  buildInputs = [pkgconfig wxGTK (wxGTK.gtk) python];
+  passthru = {inherit wxGTK;};
+}