nixpkgs/pkgs/development/ocaml-modules/metrics/lwt.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
263 B
Nix
Raw Normal View History

{ buildDunePackage, logs, lwt, metrics }:
buildDunePackage {
pname = "metrics-lwt";
inherit (metrics) version src;
propagatedBuildInputs = [ logs lwt metrics ];
meta = metrics.meta // {
description = "Lwt backend for the Metrics library";
};
}