mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
23 lines
624 B
Nix
23 lines
624 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";
|
|
};
|
|
}
|