ocamlPackages.telemetry: init at 0.0.1

This commit is contained in:
Vincent Laporte 2023-12-18 08:11:33 +01:00
parent ef9561119e
commit 39e4eb6cca
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildDunePackage, fetchurl }:
buildDunePackage rec {
pname = "telemetry";
version = "0.0.1";
minimalOCamlVersion = "4.12";
src = fetchurl {
url = "https://github.com/leostera/telemetry/releases/download/${version}/telemetry-${version}.tbz";
hash = "sha256-YEf7zC/F2zJBtQNfyJ2OznKmoFo1Ms9O2WgiOFkhp28=";
};
doCheck = true;
meta = {
description = "A lightweight library for dispatching and handling events, with a focus on metrics and instrumentation";
homepage = "https://github.com/leostera/telemetry";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}

View File

@ -1733,6 +1733,8 @@ let
telegraml = callPackage ../development/ocaml-modules/telegraml { };
telemetry = callPackage ../development/ocaml-modules/telemetry { };
terminal = callPackage ../development/ocaml-modules/terminal { };
terminal_size = callPackage ../development/ocaml-modules/terminal_size { };