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

22 lines
562 B
Nix

{ lib, fetchurl, buildDunePackage }:
buildDunePackage rec {
pname = "trace";
version = "0.5";
minimalOCamlVersion = "4.07";
src = fetchurl {
url = "https://github.com/c-cube/ocaml-trace/releases/download/v${version}/trace-${version}.tbz";
hash = "sha256-l0NvWPGBd1WR+b50WXEYfptuCUjda8MlZ/o5YngRNIg=";
};
meta = {
description = "Common interface for tracing/instrumentation libraries in OCaml";
license = lib.licenses.mit;
homepage = "https://c-cube.github.io/ocaml-trace/";
maintainers = [ lib.maintainers.vbgl ];
};
}