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