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/1.0.1/odoc-parser-1.0.1.tbz" 41 checksum: [ 42 "sha256=a2bbe8e4201b60e980bab01e96e41f2ba0b05ba3f50b44f75837e8a2fb907d2c" 43 "sha512=c3339aae880ce72df866746d9ed9e7d38a752bf994ba24e948c086349604007e39602a1c31cf2ddb61ac8f8dc9dceccca43fe185850b83e3a02d75121f9ddfe2" 44 ] 45} 46x-commit-hash: "216e3234b57bf194e65e14200e43607cc4e47da6" 47