aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/metrics/lwt.nix
blob: 47b91e430c65eef00bf7ad4310ae26ee295c6c23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ buildDunePackage, ocaml_lwt, metrics }:

buildDunePackage {
  pname = "metrics-lwt";

  inherit (metrics) version src;

  propagatedBuildInputs = [ ocaml_lwt metrics ];

  meta = metrics.meta // {
    description = "Lwt backend for the Metrics library";
  };

}