summary refs log tree commit diff
path: root/pkgs/applications/audio/ncmpc
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-05-27 16:54:58 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-05-27 16:55:56 +0200
commit4c792e58aafc39ca2c419ab2fcbb3d42223e5928 (patch)
tree10cbe33c4c95f3b0b32a7e5531aebb67c7c987b8 /pkgs/applications/audio/ncmpc
parent31bc96eee7a74ba80fac670372af9a30ed73d5e1 (diff)
downloadnixpkgs-4c792e58aafc39ca2c419ab2fcbb3d42223e5928.tar
nixpkgs-4c792e58aafc39ca2c419ab2fcbb3d42223e5928.tar.gz
nixpkgs-4c792e58aafc39ca2c419ab2fcbb3d42223e5928.tar.bz2
nixpkgs-4c792e58aafc39ca2c419ab2fcbb3d42223e5928.tar.lz
nixpkgs-4c792e58aafc39ca2c419ab2fcbb3d42223e5928.tar.xz
nixpkgs-4c792e58aafc39ca2c419ab2fcbb3d42223e5928.tar.zst
nixpkgs-4c792e58aafc39ca2c419ab2fcbb3d42223e5928.zip
ncmpc: another attempt to fix linkage on darwin
Diffstat (limited to 'pkgs/applications/audio/ncmpc')
-rwxr-xr-xpkgs/applications/audio/ncmpc/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/audio/ncmpc/default.nix b/pkgs/applications/audio/ncmpc/default.nix
index f690b914abe..3b1b3154eda 100755
--- a/pkgs/applications/audio/ncmpc/default.nix
+++ b/pkgs/applications/audio/ncmpc/default.nix
@@ -12,6 +12,8 @@ stdenv.mkDerivation rec {
   buildInputs = [ pkgconfig glib ncurses mpd_clientlib ]
     ++ libintlOrEmpty;
 
+  NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
+
   meta = with stdenv.lib; {
     description = "Curses-based interface for MPD (music player daemon)";
     homepage    = http://www.musicpd.org/clients/ncmpc/;