this repo has no description
1opam-version: "2.0" 2maintainer: "joris.giovannangeli@ahrefs.com" 3authors: "joris giovannangeli" 4homepage: "https://github.com/ahrefs/ocaml-jemalloc" 5bug-reports: "https://github.com/ahrefs/ocaml-jemalloc/issues" 6license: "MIT" 7tags: ["org:ahrefs" "clib:jemalloc"] 8dev-repo: "git+https://github.com/ahrefs/ocaml-jemalloc" 9build: [ 10 ["dune" "subst"] {dev} 11 ["dune" "build" "-p" name "-j" jobs 12 "@install"] 13] 14depends: [ 15 "ocaml" {>= "4.04.1"} 16 "dune" 17] 18depexts: [ 19 ["jemalloc-dev"] {os-distribution = "alpine"} 20 ["libjemalloc-dev"] {os-family = "debian"} 21 ["jemalloc-devel"] {os-distribution = "fedora"} 22 ["jemalloc-devel"] {os-distribution = "mageia"} 23 ["jemalloc-devel"] {os-distribution = "rhel"} 24 ["jemalloc-devel"] {os-distribution = "centos"} 25 ["jemalloc"] {os = "macos"} 26] 27synopsis: "Bindings to jemalloc mallctl api" 28description: 29 "Exposes helpers to access jemalloc control api, retrieve allocator statistics and change allocator settings." 30url { 31 src: "https://github.com/ahrefs/ocaml-jemalloc/archive/0.2.tar.gz" 32 checksum: [ 33 "sha256=ede20191dc1bbe67200131019501d13a6c1aa7ab96b8ece28ad16e371bb972f5" 34 "md5=2a315381e5a1265a0ec05d0fd8721c2c" 35 ] 36}