depot/third_party/nixpkgs/pkgs/development/ocaml-modules/trace/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

21 lines
550 B
Nix

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