summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
author_1126 <mail@elfsechsundzwanzig.de>2014-05-26 18:20:47 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-05-26 21:35:32 +0200
commit25ea04f2c98c1ecc538d0aa52815cf68b8a00bb5 (patch)
tree6c8324fa0267cc6b4c78e4c92c7fb37a7ff122ec /pkgs
parent1cbcdd515929d242b6934b65798d4c22b041bbb6 (diff)
downloadnixlib-25ea04f2c98c1ecc538d0aa52815cf68b8a00bb5.tar
nixlib-25ea04f2c98c1ecc538d0aa52815cf68b8a00bb5.tar.gz
nixlib-25ea04f2c98c1ecc538d0aa52815cf68b8a00bb5.tar.bz2
nixlib-25ea04f2c98c1ecc538d0aa52815cf68b8a00bb5.tar.lz
nixlib-25ea04f2c98c1ecc538d0aa52815cf68b8a00bb5.tar.xz
nixlib-25ea04f2c98c1ecc538d0aa52815cf68b8a00bb5.tar.zst
nixlib-25ea04f2c98c1ecc538d0aa52815cf68b8a00bb5.zip
ncmpc: propable fix for x86_64-darwin build error
@vcunat fixed syntax a bit. Close #2761.
Diffstat (limited to 'pkgs')
-rwxr-xr-xpkgs/applications/audio/ncmpc/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/audio/ncmpc/default.nix b/pkgs/applications/audio/ncmpc/default.nix
index 6db80f39e2cf..f690b914abe0 100755
--- a/pkgs/applications/audio/ncmpc/default.nix
+++ b/pkgs/applications/audio/ncmpc/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, glib, ncurses, mpd_clientlib }:
+{ stdenv, fetchurl, pkgconfig, glib, ncurses, mpd_clientlib, libintlOrEmpty }:
 
 stdenv.mkDerivation rec {
   version = "0.21";
@@ -9,7 +9,8 @@ stdenv.mkDerivation rec {
     sha256 = "648e846e305c867cb937dcb467393c2f5a30bf460bdf77b63de7af69fba1fd07";
   };
 
-  buildInputs = [ pkgconfig glib ncurses mpd_clientlib ];
+  buildInputs = [ pkgconfig glib ncurses mpd_clientlib ]
+    ++ libintlOrEmpty;
 
   meta = with stdenv.lib; {
     description = "Curses-based interface for MPD (music player daemon)";