mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
ncurses: fix cross-build by disable stripping
Ncurses uses `install -s` to also strip the binaries while installing. This broke the cross build because the wrong strip command was chosen.
This commit is contained in:
parent
7a4c81dfc8
commit
ceaee84401
@ -35,6 +35,7 @@ stdenv.mkDerivation rec {
|
||||
"--enable-pc-files"
|
||||
"--enable-symlinks"
|
||||
"--with-manpage-format=normal"
|
||||
"--disable-stripping"
|
||||
] ++ lib.optional unicode "--enable-widec"
|
||||
++ lib.optional (!withCxx) "--without-cxx"
|
||||
++ lib.optional (abiVersion == "5") "--with-abi-version=5"
|
||||
|
Loading…
Reference in New Issue
Block a user