nixpkgs/pkgs/development/ocaml-modules/metrics/unix.nix
2019-12-04 15:37:36 +00:00

20 lines
402 B
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";
};
}