Files
nixpkgs/pkgs/applications/audio/snapcast/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.6 KiB
Nix
Raw Normal View History

2022-09-30 00:37:23 +02:00
{ stdenv, lib, fetchFromGitHub, cmake, pkg-config, darwin
, alsa-lib, asio, avahi, boost17x, flac, libogg, libvorbis, soxr
, aixlog, popl
, pulseaudioSupport ? false, libpulseaudio
, nixosTests }:
2018-06-24 17:47:06 +02:00
assert pulseaudioSupport -> libpulseaudio != null;
2018-06-24 17:47:06 +02:00
stdenv.mkDerivation rec {
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
};
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 = [
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
++ 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
passthru.tests.snapcast = nixosTests.snapcast;
2018-06-24 17:47:06 +02:00
meta = with lib; {
description = "Synchronous multi-room audio player";
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;
license = licenses.gpl3Plus;
# 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
};
}