ocamlPackages.metrics-lwt: init at 0.1.0

This commit is contained in:
Vincent Laporte 2019-11-27 18:34:14 +00:00 committed by Vincent Laporte
parent 5d0dd4e536
commit 8ad01c3362
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,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";
};
}

View File

@ -466,6 +466,8 @@ let
metrics = callPackage ../development/ocaml-modules/metrics { };
metrics-lwt = callPackage ../development/ocaml-modules/metrics/lwt.nix { };
mezzo = callPackage ../development/compilers/mezzo { };
minisat = callPackage ../development/ocaml-modules/minisat { };