mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
15 lines
316 B
Nix
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";
|
||
|
};
|
||
|
}
|