diff --git a/pkgs/by-name/te/tempo/package.nix b/pkgs/by-name/te/tempo/package.nix index a3acabedac1b..2f52cb8cbe7e 100644 --- a/pkgs/by-name/te/tempo/package.nix +++ b/pkgs/by-name/te/tempo/package.nix @@ -5,16 +5,16 @@ nix-update-script, }: -buildGoModule rec { +buildGoModule (finalAttrs: { pname = "tempo"; - version = "2.8.1"; + version = "2.8.2"; src = fetchFromGitHub { owner = "grafana"; repo = "tempo"; - tag = "v${version}"; + tag = "v${finalAttrs.version}"; fetchSubmodules = true; - hash = "sha256-RzDOx2ZyA0ZntFD1ryfipsgPsxVmsdOusZ37RCnQQnM="; + hash = "sha256-mROhsqbCwPulxtg3pHVZi8FmW9PrYzGPdE0ajVvzRBY="; }; vendorHash = null; @@ -29,9 +29,9 @@ buildGoModule rec { ldflags = [ "-s" "-w" - "-X=main.Version=${version}" + "-X=main.Version=${finalAttrs.version}" "-X=main.Branch=" - "-X=main.Revision=${version}" + "-X=main.Revision=${finalAttrs.version}" ]; # tests use docker @@ -41,8 +41,9 @@ buildGoModule rec { meta = with lib; { description = "High volume, minimal dependency trace storage"; + changelog = "https://github.com/grafana/tempo/releases/tag/v${finalAttrs.version}"; license = licenses.asl20; homepage = "https://grafana.com/oss/tempo/"; maintainers = [ ]; }; -} +})