nixpkgs/pkgs/development/ocaml-modules/trace/tef.nix
2024-01-10 06:30:32 +01:00

24 lines
542 B
Nix

{ buildDunePackage, trace, mtime }:
buildDunePackage {
pname = "trace-tef";
inherit (trace) src version;
# This removes the dependency on the “atomic” package
# (not available in nixpkgs)
# Said package for OCaml ≥ 4.12 is empty
postPatch = ''
substituteInPlace src/tef/dune --replace 'atomic ' ""
'';
minimalOCamlVersion = "4.12";
propagatedBuildInputs = [ mtime trace ];
doCheck = true;
meta = trace.meta // {
description = "A simple backend for trace, emitting Catapult JSON into a file";
};
}