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-doc/odoc-parser/issues" 12dev-repo: "git+https://github.com/ocaml-doc/odoc-parser.git" 13# This template exists because without it dune pop is dependencies and build rules 14# involving odoc. Since odoc depends on this package, this doesn't work. 15doc: "https://ocaml-doc.github.io/odoc-parser/" 16depends: [ 17 "dune" {>= "2.8"} 18 "ocaml" {>= "4.02.0"} 19 "astring" 20 "result" 21 "camlp-streams" 22 "ppx_expect" {with-test} 23 ("ocaml" {< "4.04.1" & with-test} | "sexplib0" {with-test}) 24] 25build: [ 26 ["dune" "subst"] {dev} 27 [ 28 "dune" 29 "build" 30 "-p" 31 name 32 "-j" 33 jobs 34 "@install" 35 "@runtest" {with-test} 36 ] 37] 38url { 39 src: 40 "https://github.com/ocaml-doc/odoc-parser/releases/download/2.0.0/odoc-parser-2.0.0.tbz" 41 checksum: [ 42 "sha256=407919fbb0eb95761d6fc6ec6777628d94aa1907343bdca678b1880bafb33922" 43 "sha512=d2bffa3e9f30471045682e390dcee7a2c1caf3831bca4bd57c16939e782c2e23434e6f1c9887580a1804800b3629ef4c4311a9d418fca5a939f324650d54006e" 44 ] 45} 46x-commit-hash: "ebfd3b9489e44187da2c67d79a32b6fc1e92bda4" 47