Files

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

37 lines
929 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
stdenv,
lib,
buildGoModule,
fetchFromGitHub,
libpulseaudio,
nix-update-script,
}:
buildGoModule (finalAttrs: {
pname = "flex-ndax";
version = "0.5-20250801.0";
src = fetchFromGitHub {
owner = "kc2g-flex-tools";
repo = "nDAX";
tag = "v${finalAttrs.version}";
hash = "sha256-2yHv1FSikQuPamAwSzZB6+ZoblFoD/8Jnvhhv9OO+VY=";
};
buildInputs = [ libpulseaudio ];
vendorHash = "sha256-saQjN2G4mhS4XAxZbPnP2+F6n4pWw5bMNlcb8xEs11M=";
passthru.updateScript = nix-update-script { };
meta = {
broken = stdenv.hostPlatform.isDarwin;
homepage = "https://github.com/kc2g-flex-tools/nDAX";
description = "FlexRadio digital audio transport (DAX) connector for PulseAudio";
changelog = "https://github.com/kc2g-flex-tools/nDAX/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ mvs ];
mainProgram = "nDAX";
};
})