mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
cmus: add gcc build dep for darwin
This commit is contained in:
parent
ddd480ac30
commit
597a3898fc
1 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue