summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/trace/tef.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/trace/tef.nix')
-rw-r--r--pkgs/development/ocaml-modules/trace/tef.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/trace/tef.nix b/pkgs/development/ocaml-modules/trace/tef.nix
new file mode 100644
index 00000000000..c1a6f925155
--- /dev/null
+++ b/pkgs/development/ocaml-modules/trace/tef.nix
@@ -0,0 +1,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";
+  };
+
+}