tempo: 2.8.1 -> 2.8.2

https://github.com/grafana/tempo/releases/tag/v2.8.2
This commit is contained in:
Adam C. Stephens 2025-08-08 10:28:24 -04:00
parent 9199b0bc1b
commit f08ea14467
No known key found for this signature in database

View File

@ -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=<release>"
"-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 = [ ];
};
}
})