1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
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";
};
}