mackerel-agent 0.78.2 -> 0.78.3 https://repology.org/project/mackerel-agent/versions attrpath: mackerel-agent Checking auto update branch... No auto update branch exists Old version 0.78.2" not present in master derivation file with contents: { stdenv, lib, buildGoModule, fetchFromGitHub, makeWrapper, iproute2, nettools }: buildGoModule rec { pname = "mackerel-agent"; version = "0.78.3"; src = fetchFromGitHub { owner = "mackerelio"; repo = pname; rev = "v${version}"; sha256 = "sha256-9PahaZlHtD4p3C8CvXF2ceNuSOqyApJaZWhFNffNlVA="; }; nativeBuildInputs = [ makeWrapper ]; nativeCheckInputs = lib.optionals (!stdenv.isDarwin) [ nettools ]; buildInputs = lib.optionals (!stdenv.isDarwin) [ iproute2 ]; vendorHash = "sha256-lcK1rofTKPpEu/tK8XpS9EhOA30R/8J3o57YlU1/+0k="; subPackages = [ "." ]; ldflags = [ "-X=main.version=${version}" "-X=main.gitcommit=v${version}" ]; postInstall = '' wrapProgram $out/bin/mackerel-agent \ --prefix PATH : "${lib.makeBinPath buildInputs}" ''; doCheck = true; meta = with lib; { description = "System monitoring service for mackerel.io"; homepage = "https://github.com/mackerelio/mackerel-agent"; license = licenses.asl20; maintainers = with maintainers; [ midchildan ]; }; }