about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/trace/tef.nix
blob: c1a6f9251554ea44263f0f575e9329374a5b139a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ buildDunePackage, trace, mtime }:

buildDunePackage {
  pname = "trace-tef";
  inherit (trace) src version;

  propagatedBuildInputs = [ mtime trace ];

  doCheck = true;

  meta = trace.meta // {
    description = "A simple backend for trace, emitting Catapult JSON into a file";
  };

}