ocamlPackages.memtrace: init at 0.2.2 (#236273)

This commit is contained in:
Nicolas Jeannerod 2023-06-07 11:50:54 +02:00 committed by GitHub
parent d804ca626a
commit 06d62606e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildDunePackage, fetchFromGitHub
}:
buildDunePackage rec {
pname = "memtrace";
version = "0.2.2";
src = fetchFromGitHub {
owner = "janestreet";
repo = pname;
rev = "v${version}";
sha256 = "sha256-y/Xz04CMFfRIzrDzGot16zEQsBMNc4J5s/q0VERcj04=";
};
minimalOCamlVersion = "4.11";
meta = with lib; {
homepage = "https://github.com/janestreet/${pname}";
description = "Streaming client for OCaml's Memprof";
license = licenses.mit;
maintainers = with maintainers; [ niols ];
};
}

View file

@ -936,6 +936,8 @@ let
mec = callPackage ../development/ocaml-modules/mec { };
memtrace = callPackage ../development/ocaml-modules/memtrace { };
menhir = callPackage ../development/ocaml-modules/menhir { };
menhirLib = callPackage ../development/ocaml-modules/menhir/lib.nix { };