nixpkgs/pkgs/development/ocaml-modules/metrics/influx.nix
2023-03-14 13:26:43 +01:00

17 lines
312 B
Nix

{ buildDunePackage, metrics
, duration, fmt, lwt
}:
buildDunePackage rec {
pname = "metrics-influx";
inherit (metrics) version src;
duneVersion = "3";
propagatedBuildInputs = [ duration fmt lwt metrics ];
meta = metrics.meta // {
description = "Influx reporter for the Metrics library";
};
}