nixpkgs/pkgs/applications/radio/flex-ndax/default.nix

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

25 lines
656 B
Nix
Raw Normal View History

2021-09-27 12:46:41 +00:00
{ lib, buildGoModule, fetchFromGitHub, pulseaudio }:
buildGoModule rec {
pname = "flex-ndax";
version = "0.2-20211111.0";
2021-09-27 12:46:41 +00:00
src = fetchFromGitHub {
owner = "kc2g-flex-tools";
repo = "nDAX";
rev = "v${version}";
sha256 = "0m2hphj0qvgq25pfm3s76naf672ll43jv7gll8cfs7276ckg1904";
2021-09-27 12:46:41 +00:00
};
buildInputs = [ pulseaudio ];
vendorSha256 = "1bf0iidb8ggzahy3fvxispf3g940mv6vj9wqd8i3rldc6ca2i3pf";
2021-09-27 12:46:41 +00:00
meta = with lib; {
homepage = "https://github.com/kc2g-flex-tools/nDAX";
description = "FlexRadio digital audio transport (DAX) connector for PulseAudio";
license = licenses.mit;
maintainers = with maintainers; [ mvs ];
};
}