depot/third_party/nixpkgs/pkgs/development/ocaml-modules/metrics/unix.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

27 lines
577 B
Nix

{ buildDunePackage, gnuplot, lwt, metrics, metrics-lwt, mtime, uuidm }:
buildDunePackage rec {
pname = "metrics-unix";
inherit (metrics) version src;
duneVersion = "3";
# Fixes https://github.com/mirage/metrics/issues/57
postPatch = ''
substituteInPlace src/unix/dune --replace "mtime mtime.clock" "mtime"
'';
propagatedBuildInputs = [ gnuplot lwt metrics mtime uuidm ];
nativeCheckInputs = [ gnuplot ];
checkInputs = [ metrics-lwt ];
doCheck = true;
meta = metrics.meta // {
description = "Unix backend for the Metrics library";
};
}