mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03: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
@ -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 New Issue
Block a user