about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-04-30 18:19:29 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-04-30 18:49:28 -0700
commit27b435487ccf34c60cb2552066ed1262cf69e683 (patch)
tree0a0ab839e67838d75c6f2ec9c6fb0ff66583067d /pkgs/applications
parentee78173b213059e6c885dc0c4d3bf4da7d3cb229 (diff)
downloadnixlib-27b435487ccf34c60cb2552066ed1262cf69e683.tar
nixlib-27b435487ccf34c60cb2552066ed1262cf69e683.tar.gz
nixlib-27b435487ccf34c60cb2552066ed1262cf69e683.tar.bz2
nixlib-27b435487ccf34c60cb2552066ed1262cf69e683.tar.lz
nixlib-27b435487ccf34c60cb2552066ed1262cf69e683.tar.xz
nixlib-27b435487ccf34c60cb2552066ed1262cf69e683.tar.zst
nixlib-27b435487ccf34c60cb2552066ed1262cf69e683.zip
irssi: Fix ncurses linking
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/irc/irssi/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/irc/irssi/default.nix b/pkgs/applications/networking/irc/irssi/default.nix
index 47754db1f2d5..b8940bcd96e0 100644
--- a/pkgs/applications/networking/irc/irssi/default.nix
+++ b/pkgs/applications/networking/irc/irssi/default.nix
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
   
   buildInputs = [ pkgconfig ncurses glib openssl perl libintlOrEmpty ];
   
-  NIX_LDFLAGS = "-lncurses";
+  NIX_LDFLAGS = ncurses.ldflags;
   
   configureFlags = "--with-proxy --with-ncurses --enable-ssl --with-perl=yes";