1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/ocaml-modules/trace/default.nix
2023-08-04 18:15:58 +02:00

22 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 ];
};
}