pulseaudio-dlna: minor cleanups

This commit is contained in:
Florian Klink 2021-11-26 13:22:20 +01:00
parent 467aead38e
commit b1204359fa

View File

@ -2,26 +2,19 @@
, lib
, python3Packages
, mp3Support ? true
, lame ? null
, lame
, opusSupport ? true
, opusTools ? null
, opusTools
, faacSupport ? false
, faac ? null
, faac
, flacSupport ? true
, flac ? null
, flac
, soxSupport ? true
, sox ? null
, sox
, vorbisSupport ? true
, vorbis-tools ? null
, vorbis-tools
}:
assert mp3Support -> lame != null;
assert opusSupport -> opusTools != null;
assert faacSupport -> faac != null;
assert flacSupport -> flac != null;
assert soxSupport -> sox != null;
assert vorbisSupport -> vorbis-tools != null;
python3Packages.buildPythonApplication {
pname = "pulseaudio-dlna";
version = "unstable-2021-11-09";