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] 37url { 38 src: 39 "https://github.com/ocaml-doc/odoc-parser/releases/download/1.0.0/odoc-parser-1.0.0.tbz" 40 checksum: [ 41 "sha256=b6aa08ea71a9ebad9b2bebc4da1eda0d713cf3674e6d57d10459d934286e7aa1" 42 "sha512=b5caee3a0d288aeaa95e3f32de8e5f75f169ad2691d75f8d6c932e4fb0e6cb188813ac2d92d4076fe75b12217130e6999c46e7890cf0fa765070870f85a96d63" 43 ] 44} 45x-commit-hash: "b13ffc2f30ca20ca5bb733be4f630d46bd274fd6" 46