2021-10-04 12:37:57 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "flex-ncat";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "0.4-20231210.1";
|
2021-10-04 12:37:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kc2g-flex-tools";
|
|
|
|
repo = "nCAT";
|
|
|
|
rev = "v${version}";
|
2024-01-02 11:29:13 +00:00
|
|
|
hash = "sha256-oC7TPq+Xsl960B7qJP81cWF+GGc28Miv4L8+1vWo7jA=";
|
2021-10-04 12:37:57 +00:00
|
|
|
};
|
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
vendorHash = "sha256-1i9v8Ej7TMIO+aMYFPFxdfD4b5j84/zkegaYb67WokU=";
|
2021-10-04 12:37:57 +00:00
|
|
|
|
|
|
|
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 ];
|
2022-04-27 09:35:20 +00:00
|
|
|
mainProgram = "nCAT";
|
2021-10-04 12:37:57 +00:00
|
|
|
};
|
|
|
|
}
|