Files
nixpkgs/pkgs/development/ocaml-modules/metrics/influx.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
336 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
metrics,
duration,
fmt,
lwt,
}:
buildDunePackage {
pname = "metrics-influx";
inherit (metrics) version src;
duneVersion = "3";
propagatedBuildInputs = [
duration
fmt
lwt
metrics
];
meta = metrics.meta // {
description = "Influx reporter for the Metrics library";
};
}