ocamlPackages.metrics-unix: init at 0.1.0

Changed files
+21
pkgs
development
ocaml-modules
metrics
top-level
+19
pkgs/development/ocaml-modules/metrics/unix.nix
···
+
{ 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";
+
};
+
+
}
+2
pkgs/top-level/ocaml-packages.nix
···
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 { };