mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-14 00:43:24 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
80 lines
1.8 KiB
Nix
80 lines
1.8 KiB
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
python3Packages,
|
|
mp3Support ? true,
|
|
lame,
|
|
opusSupport ? true,
|
|
opusTools,
|
|
faacSupport ? false,
|
|
faac,
|
|
flacSupport ? true,
|
|
flac,
|
|
soxSupport ? true,
|
|
sox,
|
|
vorbisSupport ? true,
|
|
vorbis-tools,
|
|
pulseaudio,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication {
|
|
pname = "pulseaudio-dlna";
|
|
version = "unstable-2021-11-09";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Cygn";
|
|
repo = "pulseaudio-dlna";
|
|
rev = "637a2e7bba2277137c5f12fb58e63100dab7cbe6";
|
|
sha256 = "sha256-Oda+zQQJE2D3fiNWTzxYvI8cZVHG5JAoV2Wf5Z6IU3M=";
|
|
};
|
|
|
|
patches = [
|
|
./0001-setup.py-remove-dbus-python-from-list.patch
|
|
];
|
|
|
|
propagatedBuildInputs =
|
|
with python3Packages;
|
|
[
|
|
dbus-python
|
|
docopt
|
|
requests
|
|
setproctitle
|
|
protobuf
|
|
psutil
|
|
chardet
|
|
netifaces
|
|
notify2
|
|
pyroute2
|
|
pygobject3
|
|
pychromecast
|
|
lxml
|
|
setuptools
|
|
zeroconf
|
|
]
|
|
++ lib.optional mp3Support lame
|
|
++ lib.optional opusSupport opusTools
|
|
++ lib.optional faacSupport faac
|
|
++ lib.optional flacSupport flac
|
|
++ lib.optional soxSupport sox
|
|
++ lib.optional vorbisSupport vorbis-tools;
|
|
|
|
# pulseaudio-dlna shells out to pactl to configure sinks and sources.
|
|
# As pactl might not be in $PATH, add --suffix it (so pactl configured by the
|
|
# user get priority)
|
|
makeWrapperArgs = [ "--suffix PATH : ${lib.makeBinPath [ pulseaudio ]}" ];
|
|
|
|
# upstream has no tests
|
|
checkPhase = ''
|
|
$out/bin/pulseaudio-dlna --help > /dev/null
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight streaming server which brings DLNA / UPNP and Chromecast support to PulseAudio and Linux";
|
|
mainProgram = "pulseaudio-dlna";
|
|
homepage = "https://github.com/Cygn/pulseaudio-dlna";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ mog ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|