cmus: move defaults to package file
This commit is contained in:
parent
f91e811e44
commit
1eea8a5f4a
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, runCommand, ncurses, pkgconfig
|
{ config, stdenv, fetchFromGitHub, runCommand, ncurses, pkgconfig
|
||||||
, libiconv, CoreAudio
|
, libiconv, CoreAudio
|
||||||
|
|
||||||
, alsaSupport ? stdenv.isLinux, alsaLib ? null
|
, alsaSupport ? stdenv.isLinux, alsaLib ? null
|
||||||
|
@ -7,7 +7,7 @@
|
||||||
, jackSupport ? false, libjack ? null
|
, jackSupport ? false, libjack ? null
|
||||||
, samplerateSupport ? jackSupport, libsamplerate ? null
|
, samplerateSupport ? jackSupport, libsamplerate ? null
|
||||||
, ossSupport ? false, alsaOss ? null
|
, ossSupport ? false, alsaOss ? null
|
||||||
, pulseaudioSupport ? false, libpulseaudio ? null
|
, pulseaudioSupport ? config.pulseaudio or false, libpulseaudio ? null
|
||||||
|
|
||||||
# TODO: add these
|
# TODO: add these
|
||||||
#, artsSupport
|
#, artsSupport
|
||||||
|
|
|
@ -16335,8 +16335,6 @@ in
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreAudio;
|
inherit (darwin.apple_sdk.frameworks) CoreAudio;
|
||||||
libjack = libjack2;
|
libjack = libjack2;
|
||||||
ffmpeg = ffmpeg_2;
|
ffmpeg = ffmpeg_2;
|
||||||
|
|
||||||
pulseaudioSupport = config.pulseaudio or false;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
cmusfm = callPackage ../applications/audio/cmusfm { };
|
cmusfm = callPackage ../applications/audio/cmusfm { };
|
||||||
|
|
Loading…
Reference in New Issue