summary refs log tree commit diff
path: root/pkgs/development/python-modules/wxPython/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/wxPython/default.nix')
-rw-r--r--pkgs/development/python-modules/wxPython/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/wxPython/default.nix b/pkgs/development/python-modules/wxPython/default.nix
new file mode 100644
index 000000000000..0cd19b9fe034
--- /dev/null
+++ b/pkgs/development/python-modules/wxPython/default.nix
@@ -0,0 +1,16 @@
+{stdenv, fetchurl, wxGTK, python}:
+
+assert wxGTK.compat22;
+
+derivation {
+  name = "wxPython-2.4.2.4";
+  system = stdenv.system;
+  builder = ./builder.sh;
+  src = fetchurl {
+    url = http://heanet.dl.sourceforge.net/sourceforge/wxpython/wxPythonSrc-2.4.2.4.tar.gz;
+    md5 = "ea4eb68e10a0c2a9be643b35dcb78e41";
+  };
+  pkgconfig = wxGTK.pkgconfig;
+  gtk = wxGTK.gtk;
+  inherit stdenv wxGTK python;
+}