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
630 B

{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "zabbixctl";
version = "unstable-2019-07-06";
goPackagePath = "github.com/kovetskiy/zabbixctl";
src = fetchFromGitHub {
owner = "kovetskiy";
repo = pname;
rev = "f2e856b7ab7d8ff9f494fe9f481bbaef18ea6ff7";
sha256 = "1lr3g9h3aa2px2kh5b2qcpj3aqyhqwq7kj1s9wifgmri9q7fsdzy";
};
goDeps = ./deps.nix;
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 ];
};
}