1{ lib, fetchurl, buildDunePackage }:
2
3buildDunePackage rec {
4 pname = "trace";
5 version = "0.5";
6
7 minimalOCamlVersion = "4.07";
8
9 src = fetchurl {
10 url = "https://github.com/c-cube/ocaml-trace/releases/download/v${version}/trace-${version}.tbz";
11 hash = "sha256-l0NvWPGBd1WR+b50WXEYfptuCUjda8MlZ/o5YngRNIg=";
12 };
13
14 meta = {
15 description = "Common interface for tracing/instrumentation libraries in OCaml";
16 license = lib.licenses.mit;
17 homepage = "https://c-cube.github.io/ocaml-trace/";
18 maintainers = [ lib.maintainers.vbgl ];
19 };
20
21}