27 lines
631 B
Nix
27 lines
631 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "flex-ncat";
|
|
version = "0.4-20240817.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kc2g-flex-tools";
|
|
repo = "nCAT";
|
|
rev = "v${version}";
|
|
hash = "sha256-OjivRCWSGdzko31KwiYb1FcIE+1W94XOYiE/GS4Ky3s=";
|
|
};
|
|
|
|
vendorHash = "sha256-RqQMCP9rmdTG5AXLXkIQz0vE7qF+3RZ1BDdVRYoHHQs=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/kc2g-flex-tools/nCAT";
|
|
description = "FlexRadio remote control (CAT) via hamlib/rigctl protocol";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mvs ];
|
|
mainProgram = "nCAT";
|
|
};
|
|
}
|