nixpkgs/pkgs/development/ocaml-modules/metrics/unix.nix

20 lines
389 B
Nix
Raw Normal View History

2020-11-12 07:19:49 +00:00
{ buildDunePackage, gnuplot, ocaml_lwt, metrics, metrics-lwt, mtime, uuidm }:
buildDunePackage rec {
pname = "metrics-unix";
2020-11-12 07:19:49 +00:00
inherit (metrics) version useDune2 src;
propagatedBuildInputs = [ gnuplot ocaml_lwt metrics mtime uuidm ];
2020-11-12 07:19:49 +00:00
checkInputs = [ metrics-lwt ];
doCheck = true;
meta = metrics.meta // {
description = "Unix backend for the Metrics library";
};
}