mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
17 lines
312 B
Nix
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";
|
|
};
|
|
}
|