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

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

51 lines
1.5 KiB
Nix
Raw Normal View History

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