Unverified Commit 8d367039 authored by Aaron Andersen's avatar Aaron Andersen Committed by GitHub
Browse files

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

parents c1c16ac9 4f43ba9a
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -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 ];
  };
})