nixpkgs-suyu/pkgs/applications/radio/flex-ncat/default.nix

23 lines
600 B
Nix
Raw Normal View History

2021-09-27 14:42:59 +02:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "flex-ncat";
version = "0.1-20211223.0";
2021-09-27 14:42:59 +02:00
src = fetchFromGitHub {
owner = "kc2g-flex-tools";
repo = "nCAT";
rev = "v${version}";
hash = "sha256-l5IH6EtWqxMLqUfIYpaKgZE9Jq8q4+WgZIazQ2scyxg=";
2021-09-27 14:42:59 +02:00
};
vendorSha256 = "sha256-OzYlpC8DZQc3qo7mnl5jHlxaCNxMW+Z3VG535e+G/1o=";
2021-09-27 14:42:59 +02: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 ];
};
}