this repo has no description
1opam-version: "2.0" 2synopsis: "Pretty-printing for Menhir files" 3description: """ 4Obelisk is a simple tool which produces pretty-printed output from a Menhir parser file (.mly). 5It is inspired from yacc2latex and is also written in OCaml, but is aimed at supporting features from Menhir instead of only those of ocamlyacc.""" 6maintainer: ["Lélio Brun <lelio.brun@inria.fr>"] 7authors: ["Lélio Brun"] 8license: "MIT" 9homepage: "https://github.com/Lelio-Brun/Obelisk" 10doc: "https://github.com/Lelio-Brun/Obelisk/blob/master/README.md" 11bug-reports: "https://github.com/Lelio-Brun/obelisk/issues" 12depends: [ 13 "ocaml" {>= "4.08"} 14 "dune" {>= "2.2.0"} 15 "re" 16 "menhir" 17] 18build: [ 19 ["dune" "subst"] {dev} 20 [ 21 "dune" 22 "build" 23 "-p" 24 name 25 "-j" 26 jobs 27 "@install" 28 "@runtest" {with-test} 29 "@doc" {with-doc} 30 ] 31] 32dev-repo: "git+https://github.com/Lelio-Brun/obelisk.git" 33url { 34 src: 35 "https://github.com/Lelio-Brun/Obelisk/releases/download/v0.5.2/obelisk-v0.5.2.tbz" 36 checksum: [ 37 "sha256=e6a5f6c147e557e4a4953aab3a24977ec42c232ac22bdb07ba79667ffd7c0669" 38 "sha512=6e8e9384a5374eb8f18f4bea0542b2f78d53a517074225e1b172801f004689adab204354b01a19b92a2c1bdb3af63f5fce026ae0399cf3beb174ec39439d4f40" 39 ] 40}