diff options
| author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2007-05-31 14:02:16 +0000 |
|---|---|---|
| committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2007-05-31 14:02:16 +0000 |
| commit | 150b0712cdbd7669b20233895b32d2f7bbbefdf0 (patch) | |
| tree | fbb8604b9c8225147e529221d4f397b14fef5293 /pkgs/development/python-modules/wxPython | |
| parent | d16ae4efcf86c59c9fc59a488ad5feaf926177e9 (diff) | |
* 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.nix | 2 |
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 e31b2a2ea75f..6dbf28207508 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"; |
