ocamlPackages.metrics-unix: init at 0.1.0

gstqt5
Vincent Laporte 2019-11-27 18:34:18 +00:00 committed by Vincent Laporte
parent 8ad01c3362
commit 0b5dfa54e1
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ lib, buildDunePackage, gnuplot, ocaml_lwt, metrics, metrics-lwt, mtime, uuidm }:
buildDunePackage rec {
pname = "metrics-unix";
inherit (metrics) version src;
propagatedBuildInputs = [ gnuplot ocaml_lwt metrics mtime uuidm ];
checkInputs = lib.optional doCheck metrics-lwt;
doCheck = true;
meta = metrics.meta // {
description = "Unix backend for the Metrics library";
};
}

View File

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