nixpkgs/pkgs/development/ocaml-modules/metrics/influx.nix
2020-11-19 07:12:06 +01:00

15 lines
316 B
Nix

{ 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";
};
}