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