otel-desktop-viewer: init at 0.1.4
This commit is contained in:
parent
45f99bdbca
commit
8a06588ed4
2 changed files with 55 additions and 0 deletions
42
pkgs/by-name/ot/otel-desktop-viewer/package.nix
Normal file
42
pkgs/by-name/ot/otel-desktop-viewer/package.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, testers
|
||||
, otel-desktop-viewer
|
||||
}:
|
||||
|
||||
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" ];
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
13
pkgs/by-name/ot/otel-desktop-viewer/version-0.1.4.patch
Normal file
13
pkgs/by-name/ot/otel-desktop-viewer/version-0.1.4.patch
Normal file
|
@ -0,0 +1,13 @@
|
|||
diff --git a/main.go b/main.go
|
||||
index 7e43908..062385c 100644
|
||||
--- a/main.go
|
||||
+++ b/main.go
|
||||
@@ -15,7 +15,7 @@ func main() {
|
||||
info := component.BuildInfo{
|
||||
Command: "otel-desktop-viewer",
|
||||
Description: "Basic OTel with Custom Desktop Exporter",
|
||||
- Version: "0.1.1",
|
||||
+ Version: "0.1.4",
|
||||
}
|
||||
|
||||
if err := run(info); err != nil {
|
Loading…
Reference in a new issue