Merge pull request #172892 from midchildan/fix/ncurses-static
ncurses: make static binaries not depend on Nix store paths
This commit is contained in:
commit
a898e689b7
1 changed files with 11 additions and 1 deletions
|
@ -41,6 +41,16 @@ stdenv.mkDerivation rec {
|
|||
++ lib.optionals stdenv.hostPlatform.isWindows [
|
||||
"--enable-sp-funcs"
|
||||
"--enable-term-driver"
|
||||
] ++ lib.optionals (stdenv.hostPlatform.isUnix && stdenv.hostPlatform.isStatic) [
|
||||
# For static binaries, the point is to have a standalone binary with
|
||||
# minimum dependencies. So here we make sure that binaries using this
|
||||
# package won't depend on a terminfo database located in the Nix store.
|
||||
"--with-terminfo-dirs=${lib.concatStringsSep ":" [
|
||||
"/etc/terminfo" # Debian, Fedora, Gentoo
|
||||
"/lib/terminfo" # Debian
|
||||
"/usr/share/terminfo" # upstream default, probably all FHS-based distros
|
||||
"/run/current-system/sw/share/terminfo" # NixOS
|
||||
]}"
|
||||
];
|
||||
|
||||
# Only the C compiler, and explicitly not C++ compiler needs this flag on solaris:
|
||||
|
|
Loading…
Reference in a new issue