Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
86 lines
1.7 KiB
Nix
86 lines
1.7 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
alsa-lib,
|
|
asio,
|
|
avahi,
|
|
boost,
|
|
expat,
|
|
flac,
|
|
libogg,
|
|
libvorbis,
|
|
libopus,
|
|
soxr,
|
|
aixlog,
|
|
popl,
|
|
pulseaudioSupport ? false,
|
|
pipewireSupport ? stdenv.hostPlatform.isLinux,
|
|
libpulseaudio,
|
|
pipewire,
|
|
nixosTests,
|
|
openssl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "snapcast";
|
|
version = "0.34.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "badaix";
|
|
repo = "snapcast";
|
|
rev = "v${version}";
|
|
hash = "sha256-BPsAGFLWUfONuyQ1pzsJzGV/Jlxv+4TkVT1KG7j8H0s=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
# snapcast also supports building against tremor but as we have libogg, that's
|
|
# not needed
|
|
buildInputs = [
|
|
boost
|
|
asio
|
|
avahi
|
|
expat
|
|
flac
|
|
libogg
|
|
libvorbis
|
|
libopus
|
|
aixlog
|
|
popl
|
|
soxr
|
|
openssl
|
|
]
|
|
++ lib.optional pulseaudioSupport libpulseaudio
|
|
++ lib.optional pipewireSupport pipewire
|
|
++ lib.optional stdenv.hostPlatform.isLinux alsa-lib;
|
|
|
|
TARGET = lib.optionalString stdenv.hostPlatform.isDarwin "MACOS";
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "BUILD_WITH_PULSE" pulseaudioSupport)
|
|
(lib.cmakeBool "BUILD_WITH_PIPEWIRE" pipewireSupport)
|
|
];
|
|
|
|
# Upstream systemd unit files are pretty awful, so we provide our own in a
|
|
# NixOS module. It might make sense to get that upstreamed...
|
|
postInstall = ''
|
|
install -d $out/share/doc/snapcast
|
|
cp -r ../doc/* ../*.md $out/share/doc/snapcast
|
|
'';
|
|
|
|
passthru.tests.snapcast = nixosTests.snapcast;
|
|
|
|
meta = with lib; {
|
|
description = "Synchronous multi-room audio player";
|
|
homepage = "https://github.com/badaix/snapcast";
|
|
maintainers = with maintainers; [ fpletz ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
}
|