nixpkgs/pkgs/development/ocaml-modules/trace/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
561 B
Nix
Raw Normal View History

{ lib, fetchurl, buildDunePackage }:
buildDunePackage rec {
pname = "trace";
2023-08-30 07:12:25 +02:00
version = "0.3";
2023-08-30 07:12:25 +02:00
minimalOCamlVersion = "4.07";
src = fetchurl {
2023-08-30 07:12:25 +02:00
url = "https://github.com/c-cube/ocaml-trace/releases/download/${version}/trace-${version}.tbz";
hash = "sha256-Krq6qYO7tKJktTRjFrdmONPHfjrd81Ighsb9nmG9ZQU=";
};
meta = {
description = "Common interface for tracing/instrumentation libraries in OCaml";
license = lib.licenses.mit;
2023-08-30 07:12:25 +02:00
homepage = "https://c-cube.github.io/ocaml-trace/";
maintainers = [ lib.maintainers.vbgl ];
};
}