1{
2 lib,
3 buildDunePackage,
4 fetchurl,
5}:
6
7buildDunePackage rec {
8 pname = "telemetry";
9 version = "0.0.1";
10
11 minimalOCamlVersion = "4.12";
12
13 src = fetchurl {
14 url = "https://github.com/leostera/telemetry/releases/download/${version}/telemetry-${version}.tbz";
15 hash = "sha256-YEf7zC/F2zJBtQNfyJ2OznKmoFo1Ms9O2WgiOFkhp28=";
16 };
17
18 doCheck = true;
19
20 meta = {
21 description = "Lightweight library for dispatching and handling events, with a focus on metrics and instrumentation";
22 homepage = "https://github.com/leostera/telemetry";
23 license = lib.licenses.mit;
24 maintainers = [ lib.maintainers.vbgl ];
25 };
26}