ocamlPackages.metrics-unix: init at 0.1.0

This commit is contained in:
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";
};
}