mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
22 lines
562 B
Nix
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 ];
|
|
};
|
|
|
|
}
|