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: "https://github.com/ocaml/odoc/releases/download/2.3.1/odoc-2.3.1.tbz"
37 checksum: [
38 "sha256=36e20103507e73bdfdcb6b6d50d16724f98b7c8adbdcd5dadbac78e9fa77e603"
39 "sha512=b092e3344a6abb653f23d83ee128ecce181da561ceda31957cc4aba83f1ad642a30e887f58fbdeb809c1eeaab8732f7a8de23c13fc8314fb4550afee285cfb04"
40 ]
41}
42x-commit-hash: "7ca4890b94d9c36732e3eb69fcf2859f95975dfb"
43