Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / memtrace / default.nix
blob03ed32af92139b516f2ed79b3c9f42a6615dd8c9
1 { lib, buildDunePackage, fetchFromGitHub
2 }:
4 buildDunePackage rec {
5   pname = "memtrace";
6   version = "0.2.3";
8   src = fetchFromGitHub {
9     owner = "janestreet";
10     repo = pname;
11     rev = "v${version}";
12     hash = "sha256-dWkTrN8ZgNUz7BW7Aut8mfx8o4n8f6UZaDv/7rbbwNs=";
13   };
15   minimalOCamlVersion = "4.11";
17   meta = with lib; {
18     homepage = "https://github.com/janestreet/${pname}";
19     description = "Streaming client for OCaml's Memprof";
20     license = licenses.mit;
21     maintainers = with maintainers; [ niols ];
22   };