2022-09-30 00:37:23 +02:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, pkg-config, darwin
|
2021-06-09 23:57:09 -03:00
|
|
|
, alsa-lib, asio, avahi, boost17x, flac, libogg, libvorbis, soxr
|
2022-09-09 00:28:09 +03:00
|
|
|
, aixlog, popl
|
2021-11-12 04:34:28 +01:00
|
|
|
, pulseaudioSupport ? false, libpulseaudio
|
2020-07-28 14:47:36 +02:00
|
|
|
, nixosTests }:
|
2018-06-24 17:47:06 +02:00
|
|
|
|
2021-11-12 04:34:28 +01:00
|
|
|
assert pulseaudioSupport -> libpulseaudio != null;
|
|
|
|
|
|
2018-06-24 17:47:06 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "snapcast";
|
2022-01-03 20:52:27 +01:00
|
|
|
version = "0.26.0";
|
2018-06-24 17:47:06 +02:00
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-10-06 21:57:39 +08:00
|
|
|
owner = "badaix";
|
|
|
|
|
repo = "snapcast";
|
|
|
|
|
rev = "v${version}";
|
2022-01-03 20:52:27 +01:00
|
|
|
sha256 = "sha256-CCifn9OEFM//Hk1PJj8T3MXIV8pXCTdBBXPsHuZwLyQ=";
|
2018-06-24 17:47:06 +02:00
|
|
|
};
|
|
|
|
|
|
2021-06-03 18:57:13 +02:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2018-10-06 21:57:39 +08:00
|
|
|
# snapcast also supports building against tremor but as we have libogg, that's
|
|
|
|
|
# not needed
|
|
|
|
|
buildInputs = [
|
2021-06-03 18:57:13 +02:00
|
|
|
boost17x
|
2022-09-30 00:37:23 +02:00
|
|
|
asio avahi flac libogg libvorbis
|
2020-06-14 10:27:32 +02:00
|
|
|
aixlog popl soxr
|
2022-09-30 00:37:23 +02:00
|
|
|
] ++ lib.optional pulseaudioSupport libpulseaudio
|
|
|
|
|
++ lib.optional stdenv.isLinux alsa-lib
|
2022-10-06 19:38:53 +03:00
|
|
|
++ lib.optionals stdenv.isDarwin [darwin.apple_sdk.frameworks.IOKit darwin.apple_sdk.frameworks.AudioToolbox];
|
2022-09-30 00:37:23 +02:00
|
|
|
|
|
|
|
|
TARGET=lib.optionalString stdenv.isDarwin "MACOS";
|
2018-10-06 21:57:39 +08:00
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
'';
|
2018-06-24 17:47:06 +02:00
|
|
|
|
2020-07-28 14:47:36 +02:00
|
|
|
passthru.tests.snapcast = nixosTests.snapcast;
|
|
|
|
|
|
2018-06-24 17:47:06 +02:00
|
|
|
meta = with lib; {
|
|
|
|
|
description = "Synchronous multi-room audio player";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/badaix/snapcast";
|
2018-06-24 17:47:06 +02:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2022-09-30 00:37:23 +02:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2021-03-25 04:02:58 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2022-12-06 21:47:40 +01:00
|
|
|
# never built on x86_64-darwin since first introduction in nixpkgs
|
|
|
|
|
broken = stdenv.isDarwin && stdenv.isx86_64;
|
2018-06-24 17:47:06 +02:00
|
|
|
};
|
|
|
|
|
}
|