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-doc/odoc-parser" 11bug-reports: "https://github.com/ocaml/odoc/issues" 12dev-repo: "git+https://github.com/ocaml/odoc.git" 13doc: "https://ocaml-doc.github.io/odoc-parser/" 14depends: [ 15 "dune" {>= "3.7.0"} 16 "ocaml" {>= "4.02.0"} 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 ] 34] 35url { 36 src: 37 "https://github.com/ocaml/odoc/releases/download/v2.3.0/odoc-2.3.0.tbz" 38 checksum: [ 39 "sha256=c46d2d9feffc389116b2dc80e7c9b8aefca8ce72b181b8cff816f4f53a748d6c" 40 "sha512=66bf5d68e9720756de0bc2b2e44fda684b732bcaa2225e77003f87c3eb0ebb13ef18f2271138441a26efd2f34e1fad13219428024c63f620cc40d25a2016f2a3" 41 ] 42} 43x-commit-hash: "5b0b056f7758f85cd49c756874aae874d375a0b7" 44