tempo 1.5.0 -> 2.0.0 https://github.com/grafana/tempo/releases attrpath: tempo Checking auto update branch... No auto update branch exists Old version 1.5.0" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "tempo"; version = "2.0.0"; src = fetchFromGitHub { owner = "grafana"; repo = "tempo"; rev = "v${version}"; fetchSubmodules = true; sha256 = "sha256-sVvQQm2hE5J6ZesL8YRkdq/OwzHziBCsa3D/b1kYPpw="; }; vendorSha256 = null; subPackages = [ "cmd/tempo-cli" "cmd/tempo-query" "cmd/tempo-serverless" "cmd/tempo-vulture" "cmd/tempo" ]; ldflags = [ "-s" "-w" "-X=main.Version=${version}" "-X=main.Branch=" "-X=main.Revision=${version}" ]; # tests use docker doCheck = false; meta = with lib; { description = "A high volume, minimal dependency trace storage"; license = licenses.asl20; homepage = "https://grafana.com/oss/tempo/"; maintainers = with maintainers; [ willibutz ]; platforms = platforms.linux; }; }