Merge pull request #102629 from WilliButz/init/tempo/v0.2.0
tempo: init at 0.2.0
This commit is contained in:
commit
13bc774904
2 changed files with 28 additions and 0 deletions
26
pkgs/servers/tracing/tempo/default.nix
Normal file
26
pkgs/servers/tracing/tempo/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
version = "0.2.0";
|
||||
pname = "tempo";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
rev = "v${version}";
|
||||
owner = "grafana";
|
||||
repo = "tempo";
|
||||
sha256 = "061l72il8arxa53zfbasiwyjdxc4bf498glxrdj5ijcwgvx14275";
|
||||
};
|
||||
|
||||
vendorSha256 = null;
|
||||
|
||||
# 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;
|
||||
};
|
||||
}
|
|
@ -23726,6 +23726,8 @@ in
|
|||
|
||||
teleprompter = callPackage ../applications/misc/teleprompter {};
|
||||
|
||||
tempo = callPackage ../servers/tracing/tempo {};
|
||||
|
||||
tendermint = callPackage ../tools/networking/tendermint { };
|
||||
|
||||
termdown = python3Packages.callPackage ../applications/misc/termdown { };
|
||||
|
|
Loading…
Reference in a new issue