summary refs log tree commit diff
path: root/pkgs/system/all-packages-generic.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2004-09-22 10:18:02 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2004-09-22 10:18:02 +0000
commit04c0ea5234e34dafd5ba9a1cd7a5b15cd574c1d7 (patch)
tree43cf13daf6a610e2c1d72a08cdeedf814e01f663 /pkgs/system/all-packages-generic.nix
parentf3193ba5bc9f91c7afa6fc33192c5922143aa86a (diff)
downloadnixpkgs-04c0ea5234e34dafd5ba9a1cd7a5b15cd574c1d7.tar
nixpkgs-04c0ea5234e34dafd5ba9a1cd7a5b15cd574c1d7.tar.gz
nixpkgs-04c0ea5234e34dafd5ba9a1cd7a5b15cd574c1d7.tar.bz2
nixpkgs-04c0ea5234e34dafd5ba9a1cd7a5b15cd574c1d7.tar.lz
nixpkgs-04c0ea5234e34dafd5ba9a1cd7a5b15cd574c1d7.tar.xz
nixpkgs-04c0ea5234e34dafd5ba9a1cd7a5b15cd574c1d7.tar.zst
nixpkgs-04c0ea5234e34dafd5ba9a1cd7a5b15cd574c1d7.zip
* Start adding wxPython 2.5. Doesn't work yet though, so disable it
  for now.

svn path=/nixpkgs/trunk/; revision=1489
Diffstat (limited to 'pkgs/system/all-packages-generic.nix')
-rw-r--r--pkgs/system/all-packages-generic.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix
index e6766978e2d..d45f65bf1d6 100644
--- a/pkgs/system/all-packages-generic.nix
+++ b/pkgs/system/all-packages-generic.nix
@@ -640,10 +640,15 @@ rec {
     inherit fetchurl stdenv perl expat;
   };
 
-  wxPython = (import ../development/python-modules/wxPython) {
+  wxPython = (import ../development/python-modules/wxPython-2.5) {
     inherit fetchurl stdenv pkgconfig wxGTK python;
   };
 
+  wxPython24 = (import ../development/python-modules/wxPython) {
+    inherit fetchurl stdenv pkgconfig python;
+    wxGTK = wxGTK24;
+  };
+
   readline = (import ../development/libraries/readline) {
     inherit fetchurl stdenv ncurses;
   };