ch9344: 2.0 -> 0-unstable-2024-11-15 (#354536)
[NixPkgs.git] / pkgs / development / ocaml-modules / metrics / unix.nix
blob91cb89c15f00bddca294adf976f62537de7f1a86
2   buildDunePackage,
3   gnuplot,
4   lwt,
5   metrics,
6   metrics-lwt,
7   mtime,
8   uuidm,
9 }:
11 buildDunePackage rec {
13   pname = "metrics-unix";
15   inherit (metrics) version src;
17   propagatedBuildInputs = [
18     gnuplot
19     lwt
20     metrics
21     mtime
22     uuidm
23   ];
25   nativeCheckInputs = [ gnuplot ];
26   checkInputs = [ metrics-lwt ];
28   doCheck = true;
30   meta = metrics.meta // {
31     description = "Unix backend for the Metrics library";
32   };