summary refs log tree commit diff
path: root/pkgs/tools/misc/zabbixctl/default.nix
blob: 81d81b6794eb0c3c9b9917b48d2047cb687866ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ 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 ];
  };
}