mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 02:24:30 +00:00
spotifyd: set default arguments internally
This commit is contained in:
parent
2977213b60
commit
acc1b3260e
@ -1,8 +1,8 @@
|
||||
{ lib, stdenv, fetchFromGitHub, rustPackages, pkg-config, openssl
|
||||
, withALSA ? true, alsa-lib
|
||||
, withPulseAudio ? false, libpulseaudio
|
||||
, withPortAudio ? false, portaudio
|
||||
, withMpris ? false
|
||||
{ lib, stdenv, config, fetchFromGitHub, rustPackages, pkg-config, openssl
|
||||
, withALSA ? stdenv.isLinux, alsa-lib
|
||||
, withPulseAudio ? config.pulseaudio or stdenv.isLinux, libpulseaudio
|
||||
, withPortAudio ? stdenv.isDarwin, portaudio
|
||||
, withMpris ? stdenv.isLinux
|
||||
, withKeyring ? false
|
||||
, dbus
|
||||
}:
|
||||
|
@ -31378,12 +31378,7 @@ with pkgs;
|
||||
|
||||
spotify-cli-linux = callPackage ../applications/audio/spotify-cli-linux { };
|
||||
|
||||
spotifyd = callPackage ../applications/audio/spotifyd {
|
||||
withALSA = stdenv.isLinux;
|
||||
withPulseAudio = config.pulseaudio or stdenv.isLinux;
|
||||
withPortAudio = stdenv.isDarwin;
|
||||
withMpris = stdenv.isLinux;
|
||||
};
|
||||
spotifyd = callPackage ../applications/audio/spotifyd { };
|
||||
|
||||
srain = callPackage ../applications/networking/irc/srain { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user