nix-files/pkgs/additional/blast-ugjka/default.nix

40 lines
871 B
Nix

{ buildGoModule
, fetchFromGitHub
, lib
, makeWrapper
, nix-update-script
, pulseaudio
}:
buildGoModule rec {
pname = "blast-ugjka";
version = "0.7.0";
src = fetchFromGitHub {
owner = "ugjka";
repo = "blast";
rev = "v${version}";
hash = "sha256-yMwMG0y2ehq2dBMlv9hF+i0TgmMjW3ojBVGiqEUSrhU=";
};
vendorHash = "sha256-yPwLilMiDR1aSeuk8AEmuYPsHPRWqiByGLwgkdI5t+s=";
nativeBuildInputs = [
makeWrapper
];
postInstall = ''
wrapProgram $out/bin/blast \
--suffix PATH : ${lib.makeBinPath [ pulseaudio ]}
'';
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "blast your linux audio to DLNA receivers";
# license = licenses.mit; # MIT + NoAI
homepage = "https://github.com/ugjka/blast";
maintainers = with maintainers; [ colinsane ];
platforms = platforms.unix;
};
}