tempo: 2.8.2 -> 2.9.0; add maintainer (#456900)

This commit is contained in:
Aaron Andersen
2025-10-30 14:50:03 +00:00
committed by GitHub
+5 -5
View File
@@ -7,14 +7,14 @@
buildGoModule (finalAttrs: {
pname = "tempo";
version = "2.8.2";
version = "2.9.0";
src = fetchFromGitHub {
owner = "grafana";
repo = "tempo";
tag = "v${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-mROhsqbCwPulxtg3pHVZi8FmW9PrYzGPdE0ajVvzRBY=";
hash = "sha256-98qK+U1SltwTdeNH+MXVU9ql9Be2tMOYZ9W3dEqBqAI=";
};
vendorHash = null;
@@ -39,11 +39,11 @@ buildGoModule (finalAttrs: {
passthru.updateScript = nix-update-script { };
meta = with lib; {
meta = {
description = "High volume, minimal dependency trace storage";
changelog = "https://github.com/grafana/tempo/releases/tag/v${finalAttrs.version}";
license = licenses.asl20;
license = lib.licenses.asl20;
homepage = "https://grafana.com/oss/tempo/";
maintainers = [ ];
maintainers = [ lib.maintainers.kashw2 ];
};
})