about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-12-09 14:38:55 +0000
committerGitHub <noreply@github.com>2018-12-09 14:38:55 +0000
commit32788120f9d136737176e172292bbd645b06d0e9 (patch)
tree590fc60dec8280edf75366cfc0b8df4bd7f7a9d0 /pkgs/development
parente7d55483d1f414cb57346df5a6cdca759ef9d7f0 (diff)
parentceaee844018ebcd4ca00d22bd4a8e36a2289f6f2 (diff)
downloadnixlib-32788120f9d136737176e172292bbd645b06d0e9.tar
nixlib-32788120f9d136737176e172292bbd645b06d0e9.tar.gz
nixlib-32788120f9d136737176e172292bbd645b06d0e9.tar.bz2
nixlib-32788120f9d136737176e172292bbd645b06d0e9.tar.lz
nixlib-32788120f9d136737176e172292bbd645b06d0e9.tar.xz
nixlib-32788120f9d136737176e172292bbd645b06d0e9.tar.zst
nixlib-32788120f9d136737176e172292bbd645b06d0e9.zip
Merge pull request #51779 from Mic92/ncurses
ncurses: fix cross-build by disable stripping
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"