python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / zabbixctl / default.nix
blob3b25d479388e2fb372026ca81b1d0138a69bf64c
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "zabbixctl";
5   version = "unstable-2021-05-25";
7   src = fetchFromGitHub {
8     owner = "kovetskiy";
9     repo = pname;
10     rev = "872d73b12901b143898bffe3711b93a34ca75abe";
11     sha256 = "sha256-fWT3cgIHjHcKwFDjWIf3BUUUaVZ7hyc2ibkpU+AsW0I=";
12   };
14   vendorSha256 = "sha256-BphQcPPmeNU7RDtaHJQxIoW8xxD86xWgqLBsLR08Tag=";
16   ldflags = [ "-s" "-w" ];
18   meta = with lib; {
19     description = "Most effective way for operating in Zabbix Server";
20     homepage = "https://github.com/kovetskiy/zabbixctl";
21     license = licenses.mit;
22     maintainers = with maintainers; [ mmahut ];
23   };