this repo has no description
1opam-version: "2.0"
2synopsis: "A Lua 5.2 Parser"
3description: "This is a parser and pretty-printer for lua 5.2"
4maintainer: ["drjdnielsen@gmail.com"]
5authors: ["Jason D. Nielsen"]
6license: "MIT"
7homepage: "https://github.com/drjdn/ocaml_lua_parser"
8bug-reports: "https://github.com/drjdn/ocaml_lua_parser/issues"
9depends: [
10 "dune" {>= "2.5"}
11 "menhir" {>= "20200624" & < "20211215"}
12 "sexp_pretty" {>= "v0.14.0"}
13 "sexplib" {>= "v0.14.0"}
14 "ppx_sexp_conv" {>= "v0.14.1"}
15 "ppx_deriving" {>= "4.5"}
16]
17build: [
18 ["dune" "subst"] {dev}
19 [
20 "dune"
21 "build"
22 "-p"
23 name
24 "-j"
25 jobs
26 "@install"
27 "@runtest" {with-test}
28 "@doc" {with-doc}
29 ]
30]
31dev-repo: "git+https://github.com/drjdn/ocaml_lua_parser.git"
32url {
33 src: "https://github.com/drjdn/ocaml_lua_parser/archive/1.0.0.tar.gz"
34 checksum: [
35 "md5=040b79da95d5dbe7d5d2ecc03320b72e"
36 "sha512=537e2b38bf8590e9fc4592f4e39a6a8ad3029693e6b052376d342c13be9349fa4db3d3a2557e7ffaeb6580ad929d681271d951d0b619d3c6ca448042412e4a74"
37 ]
38}