Skip to content

Commit

Permalink
cmus: add gcc build dep for darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
benmont committed Mar 25, 2016
1 parent ddd480a commit 597a389
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/audio/cmus/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, ncurses, pkgconfig
{ stdenv, fetchFromGitHub, ncurses, pkgconfig, gcc

, alsaSupport ? stdenv.isLinux, alsaLib ? null
# simple fallback for everyone else
Expand Down Expand Up @@ -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";
Expand Down

0 comments on commit 597a389

Please sign in to comment.