this repo has no description
1opam-version: "2.0" 2synopsis: "A tool that indexes value usages from cmt files" 3description: 4 "ocaml-index should integrate with the build system to index codebase and allow tools such as Merlin to perform project-wide occurrences queries." 5maintainer: ["ulysse@tarides.com"] 6authors: ["ulysse@tarides.com"] 7license: "MIT" 8homepage: "https://github.com/ocaml/merlin" 9bug-reports: "https://github.com/ocaml/merlin/issues" 10depends: [ 11 "dune" {>= "3.0"} 12 "ocaml" {>= "5.2" & < "5.3" } 13 "merlin-lib" {>= "5.2.1-502"} 14 "odoc" {with-doc} 15 "alcotest" {with-test} 16] 17build: [ 18 ["dune" "subst"] {dev} 19 [ 20 "dune" 21 "build" 22 "-p" 23 name 24 "-j" 25 jobs 26 "--promote-install-files=false" 27 "@install" 28 "@runtest" {with-test} 29 "@doc" {with-doc} 30 ] 31 ["dune" "install" "-p" name "--create-install-files" name] 32] 33dev-repo: "git+https://github.com/ocaml/merlin.git" 34url { 35 src: 36 "https://github.com/ocaml/merlin/releases/download/v5.2.1-502/merlin-5.2.1-502.tbz" 37 checksum: [ 38 "sha256=5c02dc71b2d31b619851c14a965b91c650a4dbcd49bf56004eee61e0c58d584c" 39 "sha512=abf82c906759c8547437664ab5db67b839bbad185fa2541b28e4e07137fdf3824736dae859f0d35bd9a3950633c81a69fd0a1a0e2393ead43822afc66d1aaf3d" 40 ] 41} 42x-commit-hash: "0eaccc1b8520d605b1e00685e1c3f8acb5da534c"