biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / monitoring / mackerel-agent / default.nix
bloba240c1aee990e57d89fb35519b92e19446bbd8be
1 { stdenv, lib, buildGoModule, fetchFromGitHub, makeWrapper, iproute2, nettools }:
3 buildGoModule rec {
4   pname = "mackerel-agent";
5   version = "0.80.0";
7   src = fetchFromGitHub {
8     owner = "mackerelio";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-ETM7OTJEdySej9wrV9sth1JCJAtfBVdsPH8ndOBV118=";
12   };
14   nativeBuildInputs = [ makeWrapper ];
15   nativeCheckInputs = lib.optionals (!stdenv.isDarwin) [ nettools ];
16   buildInputs = lib.optionals (!stdenv.isDarwin) [ iproute2 ];
18   vendorHash = "sha256-pCUHDHKNaSoIPB3fS+Jf953YMI5cXcUOLF+YP62iPMo=";
20   subPackages = [ "." ];
22   ldflags = [
23     "-X=main.version=${version}"
24     "-X=main.gitcommit=v${version}"
25   ];
27   postInstall = ''
28     wrapProgram $out/bin/mackerel-agent \
29       --prefix PATH : "${lib.makeBinPath buildInputs}"
30   '';
32   doCheck = true;
34   meta = with lib; {
35     description = "System monitoring service for mackerel.io";
36     mainProgram = "mackerel-agent";
37     homepage = "https://github.com/mackerelio/mackerel-agent";
38     license = licenses.asl20;
39     maintainers = with maintainers; [ midchildan ];
40   };