summary refs log tree commit diff
path: root/pkgs/development/python-modules/wxPython
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2007-05-31 14:02:16 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2007-05-31 14:02:16 +0000
commit150b0712cdbd7669b20233895b32d2f7bbbefdf0 (patch)
treefbb8604b9c8225147e529221d4f397b14fef5293 /pkgs/development/python-modules/wxPython
parentd16ae4efcf86c59c9fc59a488ad5feaf926177e9 (diff)
downloadnixpkgs-150b0712cdbd7669b20233895b32d2f7bbbefdf0.tar
nixpkgs-150b0712cdbd7669b20233895b32d2f7bbbefdf0.tar.gz
nixpkgs-150b0712cdbd7669b20233895b32d2f7bbbefdf0.tar.bz2
nixpkgs-150b0712cdbd7669b20233895b32d2f7bbbefdf0.tar.lz
nixpkgs-150b0712cdbd7669b20233895b32d2f7bbbefdf0.tar.xz
nixpkgs-150b0712cdbd7669b20233895b32d2f7bbbefdf0.tar.zst
nixpkgs-150b0712cdbd7669b20233895b32d2f7bbbefdf0.zip
* Very subtle purity error: on NixOS, wxGTK wasn't being built with
  Xinerama support.  It gets libXinerama as an explicit build input,
  but it checks for its existence in /usr/X11/include etc.  This
  caused Bittorrent to fail (NIXPKGS-61).  Backported the builder
  fixes from wxGTK 2.8.

svn path=/nixpkgs/trunk/; revision=8813
Diffstat (limited to 'pkgs/development/python-modules/wxPython')
-rw-r--r--pkgs/development/python-modules/wxPython/2.6.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/wxPython/2.6.nix b/pkgs/development/python-modules/wxPython/2.6.nix
index e31b2a2ea75..6dbf2820750 100644
--- a/pkgs/development/python-modules/wxPython/2.6.nix
+++ b/pkgs/development/python-modules/wxPython/2.6.nix
@@ -1,6 +1,6 @@
 {stdenv, fetchurl, pkgconfig, wxGTK, python}:
 
-assert wxGTK.compat22;
+assert wxGTK.unicode;
 
 stdenv.mkDerivation {
   name = "wxPython-2.6.3.3";