Unverified Commit d282d866 authored by Adam C. Stephens's avatar Adam C. Stephens Committed by GitHub
Browse files

tempo: 2.8.1 -> 2.8.2 (#432025)

parents 9e421861 f08ea144
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -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 = [ ];
  };
}
})