27 lines
597 B
Nix
27 lines
597 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|