mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Fixing the rule that made ncurses build without unicode support only under
cygwin and cross building. svn path=/nixpkgs/branches/stdenv-updates/; revision=19276
This commit is contained in:
parent
9fefb472c5
commit
536f860934
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue