4bac34ead1
GitOrigin-RevId: 724bfc0892363087709bd3a5a1666296759154b1
25 lines
555 B
Nix
25 lines
555 B
Nix
{ buildDunePackage, gnuplot, lwt, metrics, metrics-lwt, mtime, uuidm }:
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "metrics-unix";
|
|
|
|
inherit (metrics) version src;
|
|
|
|
# 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";
|
|
};
|
|
|
|
}
|