nixpkgs/pkgs/by-name/ka/kappanhang/package.nix

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

34 lines
729 B
Nix
Raw Normal View History

2021-09-22 20:29:31 +00:00
{
lib,
buildGoModule,
fetchFromGitHub,
pkg-config,
pulseaudio,
}:
buildGoModule rec {
pname = "kappanhang";
version = "1.3";
src = fetchFromGitHub {
owner = "nonoo";
repo = pname;
rev = "v${version}";
2023-09-21 14:23:40 +00:00
hash = "sha256-l0V2NVzLsnpPe5EJcr5i9U7OGaYzNRDd1f/ogrdCnvk=";
2021-09-22 20:29:31 +00:00
};
2023-09-21 14:23:40 +00:00
vendorHash = "sha256-CnZTUP2JBbhG8VUHbVX+vicfQJC9Y8endlwQHdmzMus=";
2021-09-22 20:29:31 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ pulseaudio ];
meta = with lib; {
homepage = "https://github.com/nonoo/kappanhang";
description = "Remote control for Icom radio transceivers";
license = licenses.mit;
platforms = platforms.linux;
2021-09-22 20:29:31 +00:00
maintainers = with maintainers; [ mvs ];
2024-02-11 02:19:15 +00:00
mainProgram = "kappanhang";
2021-09-22 20:29:31 +00:00
};
}