aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/metrics/influx.nix
blob: 8394ec0c0f94978fc9faf8523bf27121c8e8c827 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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";
  };
}