nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / development / ocaml-modules / metrics / influx.nix
blobd4b94bc231e7048bb1944291789cd10c9ec10c59
2   buildDunePackage,
3   metrics,
4   duration,
5   fmt,
6   lwt,
7 }:
9 buildDunePackage rec {
10   pname = "metrics-influx";
11   inherit (metrics) version src;
13   duneVersion = "3";
15   propagatedBuildInputs = [
16     duration
17     fmt
18     lwt
19     metrics
20   ];
22   meta = metrics.meta // {
23     description = "Influx reporter for the Metrics library";
24   };