about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-04 00:58:48 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-05 16:30:29 +0100
commite0b0d094e5e633fadce8f3555599af6ad03c5e0a (patch)
tree41fd8aaef1943d79c8f4824833961acbcc308c2a /pkgs
parentdb1aa1a534d9967208fb3535fdee1f347ff443d5 (diff)
spotifyd: remove ? null
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/audio/spotifyd/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/audio/spotifyd/default.nix b/pkgs/applications/audio/spotifyd/default.nix
index f9f1383662e5e..3c4370d1614eb 100644
--- a/pkgs/applications/audio/spotifyd/default.nix
+++ b/pkgs/applications/audio/spotifyd/default.nix
@@ -1,10 +1,10 @@
 { lib, fetchFromGitHub, rustPackages, pkg-config, openssl
-, withALSA ? true, alsaLib ? null
-, withPulseAudio ? false, libpulseaudio ? null
-, withPortAudio ? false, portaudio ? null
+, withALSA ? true, alsaLib
+, withPulseAudio ? false, libpulseaudio
+, withPortAudio ? false, portaudio
 , withMpris ? false
 , withKeyring ? false
-, dbus ? null
+, dbus
 }:
 
 rustPackages.rustPlatform.buildRustPackage rec {