ncmpc: propable fix for x86_64-darwin build error

@vcunat fixed syntax a bit. Close #2761.
This commit is contained in:
_1126 2014-05-26 18:20:47 +02:00 committed by Vladimír Čunát
parent 1cbcdd5159
commit 25ea04f2c9

View file

@ -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)";