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

70 lines
1.7 KiB
Nix
Raw Normal View History

2018-06-24 15:47:06 +00:00
{ stdenv, lib, fetchFromGitHub, cmake, pkgconfig
, alsaLib, asio, avahi, boost170, flac, libogg, libvorbis, soxr
, nixosTests }:
2018-06-24 15:47:06 +00:00
let
2018-10-06 13:57:39 +00:00
dependency = { name, version, sha256 }:
stdenv.mkDerivation {
name = "${name}-${version}";
2018-06-24 15:47:06 +00:00
src = fetchFromGitHub {
owner = "badaix";
2018-10-06 13:57:39 +00:00
repo = name;
rev = "v${version}";
inherit sha256;
2018-06-24 15:47:06 +00:00
};
2018-10-06 13:57:39 +00:00
2018-06-24 15:47:06 +00:00
nativeBuildInputs = [ cmake ];
};
2018-10-06 13:57:39 +00:00
aixlog = dependency {
name = "aixlog";
2018-06-24 15:47:06 +00:00
version = "1.2.1";
2018-10-06 13:57:39 +00:00
sha256 = "1rh4jib5g41b85bqrxkl5g74hk5ryf187y9fw0am76g59xlymfpr";
};
2018-06-24 15:47:06 +00:00
2018-10-06 13:57:39 +00:00
popl = dependency {
name = "popl";
version = "1.2.0";
sha256 = "1z6z7fwffs3d9h56mc2m24d5gp4fc5bi8836zyfb276s6fjyfcai";
2018-06-24 15:47:06 +00:00
};
in
stdenv.mkDerivation rec {
pname = "snapcast";
2020-06-14 08:27:32 +00:00
version = "0.20.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}";
2020-06-14 08:27:32 +00:00
sha256 = "152ic8hlyawcmj9pykb33xc6yx7il6yb9ilmsy6m9nlh40m8yxls";
2018-06-24 15:47:06 +00:00
};
2020-06-14 08:27:32 +00:00
nativeBuildInputs = [ cmake pkgconfig boost170.dev ];
2018-10-06 13:57:39 +00:00
# snapcast also supports building against tremor but as we have libogg, that's
# not needed
buildInputs = [
alsaLib asio avahi flac libogg libvorbis
2020-06-14 08:27:32 +00:00
aixlog popl soxr
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 ];
license = licenses.gpl3;
};
}