depot/pkgs/by-name/ot/otel-desktop-viewer/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

46 lines
1.2 KiB
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, testers
, otel-desktop-viewer
, stdenv
, apple-sdk_12
}:
buildGoModule rec {
pname = "otel-desktop-viewer";
version = "0.1.4";
src = fetchFromGitHub {
owner = "CtrlSpice";
repo = "otel-desktop-viewer";
rev = "v${version}";
hash = "sha256-kMgcco4X7X9WoCCH8iZz5qGr/1dWPSeQOpruTSUnonI=";
};
# https://github.com/CtrlSpice/otel-desktop-viewer/issues/139
patches = [ ./version-0.1.4.patch ];
subPackages = [ "..." ];
vendorHash = "sha256-pH16DCYeW8mdnkkRi0zqioovZu9slVc3gAdhMYu2y98=";
ldflags = [ "-s" "-w" ];
buildInputs = lib.optional stdenv.isDarwin apple-sdk_12;
passthru.tests.version = testers.testVersion {
inherit version;
package = otel-desktop-viewer;
command = "otel-desktop-viewer --version";
};
meta = with lib; {
changelog = "https://github.com/CtrlSpice/otel-desktop-viewer/releases/tag/v${version}";
description = "Receive & visualize OpenTelemtry traces locally within one CLI tool";
homepage = "https://github.com/CtrlSpice/otel-desktop-viewer";
license = licenses.asl20;
maintainers = with maintainers; [ gaelreyrol ];
mainProgram = "otel-desktop-viewer";
};
}