83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
16 lines
312 B
Nix
16 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";
|
|
};
|
|
}
|