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" & < "5.0"} 19 "astring" 20 "result" 21 "ppx_expect" {with-test} 22 ("ocaml" {< "4.04.1" & with-test} | "sexplib0" {with-test}) 23] 24build: [ 25 ["dune" "subst"] {dev} 26 [ 27 "dune" 28 "build" 29 "-p" 30 name 31 "-j" 32 jobs 33 "@install" 34 "@runtest" {with-test} 35 ] 36] 37x-commit-hash: "c5ce41b1e1841a2005bb3c4ca3bf1f77876d509d" 38url { 39 src: 40 "https://github.com/ocaml-doc/odoc-parser/releases/download/0.9.0/odoc-parser-0.9.0.tbz" 41 checksum: [ 42 "sha256=df0dad1bad39bf4de6be666c4b63b973bd72eba3b75be9f726317121b5f0bd79" 43 "sha512=5222debc190784cee62fee177d39fcff56f326b1a3c5b4beb408d0c0eb3d43bf7dcfcffcd25ccc6c3d3c0c098771f01780cb687495ac2a4d95a4bc6401643316" 44 ] 45}