From 536f8609342e15560d206d83bd208d00785a9d31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Wed, 6 Jan 2010 22:08:52 +0000 Subject: [PATCH] Fixing the rule that made ncurses build without unicode support only under cygwin and cross building. svn path=/nixpkgs/branches/stdenv-updates/; revision=19276 --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 887ec12fe0b..e3c32bac3f7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4378,7 +4378,7 @@ let inherit fetchurl stdenv; # The "! (stdenv ? cross)" is for the cross-built arm ncurses, which # don't build for me in unicode. - unicode = (system != "i686-cygwin" && ! (stdenv ? cross)); + unicode = (system != "i686-cygwin" && ! (crossSystem == null)); }; neon = neon026;