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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
436 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
gnuplot,
lwt,
metrics,
metrics-lwt,
mtime,
uuidm,
}:
buildDunePackage {
pname = "metrics-unix";
inherit (metrics) version src;
propagatedBuildInputs = [
gnuplot
lwt
metrics
mtime
uuidm
];
nativeCheckInputs = [ gnuplot ];
checkInputs = [ metrics-lwt ];
doCheck = true;
meta = metrics.meta // {
description = "Unix backend for the Metrics library";
};
}