diff --git a/pkgs/servers/monitoring/grafana-agent/default.nix b/pkgs/servers/monitoring/grafana-agent/default.nix index c095c86108d7..8a6434ac9a61 100644 --- a/pkgs/servers/monitoring/grafana-agent/default.nix +++ b/pkgs/servers/monitoring/grafana-agent/default.nix @@ -10,16 +10,16 @@ buildGoModule rec { pname = "grafana-agent"; - version = "0.34.1"; + version = "0.34.2"; src = fetchFromGitHub { rev = "v${version}"; owner = "grafana"; repo = "agent"; - hash = "sha256-xgmh5oFI6Pd0q31zJluLtbhF0ZfuXy2cEPk06sW9SH8="; + hash = "sha256-PGxqIeOqc2U4i6l3ENnpb1BAoWrEAh2p3X+azzbpl3k="; }; - vendorHash = "sha256-LKHs6KHdXtCMImYiUmi2pfMbfpt9alpvWS4rlo5kuCI="; + vendorHash = "sha256-x9c6xRk1Ska+kqoFhAJ9ei35Lg8wsgDpZpfxJ3UExfg="; proxyVendor = true; # darwin/linux hash mismatch ldflags = let @@ -67,10 +67,11 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "A lightweight subset of Prometheus and more, optimized for Grafana Cloud"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://grafana.com/products/cloud"; - maintainers = with maintainers; [ flokli emilylange ]; + changelog = "https://github.com/grafana/agent/blob/${src.rev}/CHANGELOG.md"; + maintainers = with lib.maintainers; [ flokli emilylange ]; }; }