this repo has no description
1opam-version: "2.0" 2 3homepage: "http://github.com/ocaml/odoc" 4doc: "https://ocaml.github.io/odoc/" 5bug-reports: "https://github.com/ocaml/odoc/issues" 6license: "ISC" 7 8authors: [ 9 "Thomas Refis <trefis@janestreet.com>" 10 "David Sheets <sheets@alum.mit.edu>" 11 "Leo White <leo@lpw25.net>" 12 "Anton Bachin <antonbachin@yahoo.com>" 13 "Jon Ludlam <jon@recoil.org>" 14] 15maintainer: "Jon Ludlam <jon@recoil.org>" 16dev-repo: "git+https://github.com/ocaml/odoc.git" 17 18synopsis: "OCaml documentation generator" 19description: """ 20Odoc is a documentation generator for OCaml. It reads doc comments, 21delimited with `(** ... *)`, and outputs HTML. 22""" 23 24depends: [ 25 "astring" 26 "cmdliner" {>= "1.0.0" & < "2.0.0"} 27 "cppo" {build & >= "1.1.0"} 28 "dune" 29 "fpath" 30 "ocaml" {>= "4.02.0" & < "4.12"} 31 "result" 32 "tyxml" {>= "4.3.0"} 33 34 "alcotest" {dev & >= "0.8.3"} 35 "markup" {dev & >= "0.8.0"} 36 "ocamlfind" {dev} 37 "sexplib" {dev & >= "113.33.00"} 38 39 "bisect_ppx" {dev & >= "1.3.0"} 40] 41 42build: [ 43 ["dune" "subst"] {dev} 44 ["dune" "build" "-p" name "-j" jobs] 45] 46url { 47 src: "https://github.com/ocaml/odoc/releases/download/1.5.1/odoc-1.5.1.tbz" 48 checksum: [ 49 "sha256=ea14721344e2aab6b63f2884782d37e94a1ed8ab91147a1c08a29710d99d354f" 50 "sha512=b2d12277d61e1e52354128d459d2ad49bea24a4d46db89790769c2843c4b00beaee3ea7d0215211079174c0bd893de6bf52dcbb71e46622728be7491d91058b2" 51 ] 52}