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.
wip/yesman
Jörg Thalheim 6 years ago
parent 7a4c81dfc8
commit ceaee84401
  1. 1
      pkgs/development/libraries/ncurses/default.nix

@ -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…
Cancel
Save