nixpkgs/pkgs/development/ocaml-modules/metrics/lwt.nix
2019-12-04 15:37:36 +00:00

15 lines
264 B
Nix

{ 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";
};
}