this repo has no description
1opam-version: "2.0" 2synopsis: "Parser for ocaml documentation comments" 3description: """ 4Odoc_parser is a library for parsing the contents of OCaml documentation 5comments, formatted using 'odoc' syntax, an extension of the language 6understood by ocamldoc.""" 7maintainer: ["Jon Ludlam <jon@recoil.org>"] 8authors: ["Anton Bachin <antonbachin@yahoo.com>"] 9license: "ISC" 10homepage: "https://github.com/ocaml/odoc" 11bug-reports: "https://github.com/ocaml/odoc/issues" 12dev-repo: "git+https://github.com/ocaml/odoc.git" 13doc: "https://ocaml.github.io/odoc/odoc_parser" 14depends: [ 15 "dune" {>= "3.7"} 16 "ocaml" {>= "4.02.0" & < "5.4"} 17 "astring" 18 "result" 19 "camlp-streams" 20 "ppx_expect" {with-test} 21 ("ocaml" {< "4.04.1" & with-test} | "sexplib0" {with-test}) 22] 23build: [ 24 ["dune" "subst"] {dev} 25 [ 26 "dune" 27 "build" 28 "-p" 29 name 30 "-j" 31 jobs 32 "@install" 33 # Tests are not all associated with a package and would be run if using the 34 # default '@runtest'. 35 "@src/parser/runtest" {with-test} 36 ] 37] 38x-maintenance-intent: ["(latest)"] 39url { 40 src: "https://github.com/ocaml/odoc/releases/download/3.0.0/odoc-3.0.0.tbz" 41 checksum: [ 42 "sha256=ce84fa7e0cc5f3e8a54e6adeb10826152798b602057b9e46c5ae7e5d5206812b" 43 "sha512=9febd413450ca2e3824c9ef7e1c9ae8d8094aa72ed71327a69d8d6b42f6f197b3f3f40d674de0d11fa1242ee0df95c693b5d74467d530704e1339f3a523452f6" 44 ] 45} 46x-commit-hash: "90e679061f68c5e5ee5915e280f63d842f41f300" 47