Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tempo: init at 0.2.0 #102629

Merged
merged 1 commit into from Nov 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
26 changes: 26 additions & 0 deletions pkgs/servers/tracing/tempo/default.nix
@@ -0,0 +1,26 @@
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
version = "0.2.0";
pname = "tempo";

src = fetchFromGitHub {
rev = "v${version}";
owner = "grafana";
repo = "tempo";
WilliButz marked this conversation as resolved.
Show resolved Hide resolved
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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -23730,6 +23730,8 @@ in

teleprompter = callPackage ../applications/misc/teleprompter {};

tempo = callPackage ../servers/tracing/tempo {};

tendermint = callPackage ../tools/networking/tendermint { };

termdown = python3Packages.callPackage ../applications/misc/termdown { };
Expand Down