From 1e324cdd5791acf5bff5cabfa93ac37884049531 Mon Sep 17 00:00:00 2001 From: Michael Phillips Date: Fri, 25 Mar 2016 10:40:01 -0500 Subject: [PATCH] cmus: add gcc build dep for darwin (cherry picked from commit 597a3898fca1a2dd5875bc6bcf37b6e4e4d37279) --- pkgs/applications/audio/cmus/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/cmus/default.nix b/pkgs/applications/audio/cmus/default.nix index 8e4a08bcacc..b71ffce61e2 100644 --- a/pkgs/applications/audio/cmus/default.nix +++ b/pkgs/applications/audio/cmus/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, ncurses, pkgconfig +{ stdenv, fetchFromGitHub, ncurses, pkgconfig, gcc , alsaSupport ? stdenv.isLinux, alsaLib ? null # simple fallback for everyone else @@ -109,7 +109,7 @@ stdenv.mkDerivation rec { "CONFIG_WAV=y" ] ++ concatMap (a: a.flags) opts); - buildInputs = [ ncurses pkgconfig ] ++ concatMap (a: a.deps) opts; + buildInputs = [ ncurses pkgconfig gcc ] ++ concatMap (a: a.deps) opts; meta = { description = "Small, fast and powerful console music player for Linux and *BSD";