tempo: 2.8.1 -> 2.8.2
https://github.com/grafana/tempo/releases/tag/v2.8.2
This commit is contained in:
parent
9199b0bc1b
commit
f08ea14467
@ -5,16 +5,16 @@
|
|||||||
nix-update-script,
|
nix-update-script,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule (finalAttrs: {
|
||||||
pname = "tempo";
|
pname = "tempo";
|
||||||
version = "2.8.1";
|
version = "2.8.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "grafana";
|
owner = "grafana";
|
||||||
repo = "tempo";
|
repo = "tempo";
|
||||||
tag = "v${version}";
|
tag = "v${finalAttrs.version}";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
hash = "sha256-RzDOx2ZyA0ZntFD1ryfipsgPsxVmsdOusZ37RCnQQnM=";
|
hash = "sha256-mROhsqbCwPulxtg3pHVZi8FmW9PrYzGPdE0ajVvzRBY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = null;
|
vendorHash = null;
|
||||||
@ -29,9 +29,9 @@ buildGoModule rec {
|
|||||||
ldflags = [
|
ldflags = [
|
||||||
"-s"
|
"-s"
|
||||||
"-w"
|
"-w"
|
||||||
"-X=main.Version=${version}"
|
"-X=main.Version=${finalAttrs.version}"
|
||||||
"-X=main.Branch=<release>"
|
"-X=main.Branch=<release>"
|
||||||
"-X=main.Revision=${version}"
|
"-X=main.Revision=${finalAttrs.version}"
|
||||||
];
|
];
|
||||||
|
|
||||||
# tests use docker
|
# tests use docker
|
||||||
@ -41,8 +41,9 @@ buildGoModule rec {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "High volume, minimal dependency trace storage";
|
description = "High volume, minimal dependency trace storage";
|
||||||
|
changelog = "https://github.com/grafana/tempo/releases/tag/v${finalAttrs.version}";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
homepage = "https://grafana.com/oss/tempo/";
|
homepage = "https://grafana.com/oss/tempo/";
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user