Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 fetchFromGitHub, 5}: 6 7buildDunePackage rec { 8 pname = "memtrace"; 9 version = "0.2.3"; 10 11 src = fetchFromGitHub { 12 owner = "janestreet"; 13 repo = pname; 14 rev = "v${version}"; 15 hash = "sha256-dWkTrN8ZgNUz7BW7Aut8mfx8o4n8f6UZaDv/7rbbwNs="; 16 }; 17 18 minimalOCamlVersion = "4.11"; 19 20 meta = with lib; { 21 homepage = "https://github.com/janestreet/${pname}"; 22 description = "Streaming client for OCaml's Memprof"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ niols ]; 25 }; 26}