8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
14 lines
264 B
Nix
14 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";
|
|
};
|
|
|
|
}
|