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

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

24 lines
530 B
Nix
Raw Normal View History

{ lib, buildDunePackage, fetchFromGitHub
}:
buildDunePackage rec {
pname = "memtrace";
2023-06-17 13:27:07 +00:00
version = "0.2.3";
src = fetchFromGitHub {
owner = "janestreet";
repo = pname;
rev = "v${version}";
2023-06-17 13:27:07 +00:00
hash = "sha256-dWkTrN8ZgNUz7BW7Aut8mfx8o4n8f6UZaDv/7rbbwNs=";
};
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 ];
};
}