ocamlPackages.metrics-influx: init at 0.2.0
This commit is contained in:
parent
9785d7c7aa
commit
7346475c9f
|
@ -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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -531,6 +531,8 @@ let
|
||||||
|
|
||||||
metrics = callPackage ../development/ocaml-modules/metrics { };
|
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-lwt = callPackage ../development/ocaml-modules/metrics/lwt.nix { };
|
||||||
|
|
||||||
metrics-unix = callPackage ../development/ocaml-modules/metrics/unix.nix {
|
metrics-unix = callPackage ../development/ocaml-modules/metrics/unix.nix {
|
||||||
|
|
Loading…
Reference in New Issue