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