ocamlPackages.metrics-influx: init at 0.2.0

This commit is contained in:
Vincent Laporte 2020-11-13 11:52:57 +01:00 committed by Vincent Laporte
parent 9785d7c7aa
commit 7346475c9f
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ buildDunePackage, metrics
, astring, duration, fmt, lwt
}:
buildDunePackage rec {
pname = "metrics-influx";
inherit (metrics) version useDune2 src;
propagatedBuildInputs = [ astring duration fmt lwt metrics ];
meta = metrics.meta // {
description = "Influx reporter for the Metrics library";
};
}

View file

@ -531,6 +531,8 @@ let
metrics = callPackage ../development/ocaml-modules/metrics { };
metrics-influx = callPackage ../development/ocaml-modules/metrics/influx.nix { };
metrics-lwt = callPackage ../development/ocaml-modules/metrics/lwt.nix { };
metrics-unix = callPackage ../development/ocaml-modules/metrics/unix.nix {