about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/metrics/influx.nix
blob: cca344f991c2cb9bf21d0b32c1c63538f14465b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ buildDunePackage, metrics
, duration, fmt, lwt
}:

buildDunePackage rec {
  pname = "metrics-influx";
  inherit (metrics) version src;

  propagatedBuildInputs = [ duration fmt lwt metrics ];

  meta = metrics.meta // {
    description = "Influx reporter for the Metrics library";
  };
}