My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/zabbixctl/default.nix

24 lines
651 B

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "zabbixctl";
version = "unstable-2021-05-25";
src = fetchFromGitHub {
owner = "kovetskiy";
repo = pname;
rev = "872d73b12901b143898bffe3711b93a34ca75abe";
sha256 = "sha256-fWT3cgIHjHcKwFDjWIf3BUUUaVZ7hyc2ibkpU+AsW0I=";
};
vendorSha256 = "sha256-BphQcPPmeNU7RDtaHJQxIoW8xxD86xWgqLBsLR08Tag=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Most effective way for operating in Zabbix Server";
homepage = "https://github.com/kovetskiy/zabbixctl";
license = licenses.mit;
maintainers = with maintainers; [ mmahut ];
};
}