about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-12-09 13:45:49 +0000
committerJörg Thalheim <joerg@thalheim.io>2018-12-09 13:49:41 +0000
commitceaee844018ebcd4ca00d22bd4a8e36a2289f6f2 (patch)
tree40af6af3e9fda11bc6d6c71e82b95688e1b19b11 /pkgs/development
parent7a4c81dfc8e58dcb7d66a2f01b0e379d3e54bf07 (diff)
downloadnixlib-ceaee844018ebcd4ca00d22bd4a8e36a2289f6f2.tar
nixlib-ceaee844018ebcd4ca00d22bd4a8e36a2289f6f2.tar.gz
nixlib-ceaee844018ebcd4ca00d22bd4a8e36a2289f6f2.tar.bz2
nixlib-ceaee844018ebcd4ca00d22bd4a8e36a2289f6f2.tar.lz
nixlib-ceaee844018ebcd4ca00d22bd4a8e36a2289f6f2.tar.xz
nixlib-ceaee844018ebcd4ca00d22bd4a8e36a2289f6f2.tar.zst
nixlib-ceaee844018ebcd4ca00d22bd4a8e36a2289f6f2.zip
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.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/ncurses/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/libraries/ncurses/default.nix b/pkgs/development/libraries/ncurses/default.nix
index 815db76d5ac3..f5995a8f480e 100644
--- a/pkgs/development/libraries/ncurses/default.nix
+++ b/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"