this repo has no description
1opam-version: "2.0"
2synopsis: "An OCaml lexer generator for Unicode"
3description: "
4sedlex is a lexer generator for OCaml. It is similar to ocamllex, but supports
5Unicode. Unlike ocamllex, sedlex allows lexer specifications within regular
6OCaml source files. Lexing specific constructs are provided via a ppx syntax
7extension.
8"
9license: "MIT"
10doc: "https://ocaml-community.github.io/sedlex/index.html"
11maintainer: "Alain Frisch <alain.frisch@lexifi.com>"
12authors: [
13 "Alain Frisch <alain.frisch@lexifi.com>"
14 "https://github.com/ocaml-community/sedlex/graphs/contributors"
15]
16homepage: "https://github.com/ocaml-community/sedlex"
17dev-repo: "git+https://github.com/ocaml-community/sedlex.git"
18bug-reports: "https://github.com/ocaml-community/sedlex/issues"
19build: [
20 ["dune" "build" "-p" name "-j" jobs]
21 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
22 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
23]
24depends: [
25 "ocaml" {>= "4.04" & < "5.0"}
26 "dune" {>= "1.8"}
27 "ppxlib" {>= "0.18.0" & < "0.26.0"}
28 "gen"
29 "uchar"
30]
31url {
32 src: "https://github.com/ocaml-community/sedlex/archive/v2.3.tar.gz"
33 checksum: [
34 "md5=bca8b8844d525f3f200d57fddfd2bcfa"
35 "sha512=f91bbda9e79417e0a7c723a8efd9644404ffc91c60898b8fa07a514c38bc8472eae34419405354ae80966feb8d3203943f78776ad395a16132c7c890e3dbd7d8"
36 ]
37}