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" "subst"] {dev}
21 ["dune" "build" "-p" name "-j" jobs]
22 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
23 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
24]
25depends: [
26 "ocaml" {build & >= "4.02.3" & < "5.0"}
27 "dune" {>= "1.0"}
28 "ppx_tools_versioned" {>= "5.2.2"}
29 "ocaml-migrate-parsetree" {< "2.0.0"}
30 "gen"
31 "uchar"
32]
33url {
34 src: "https://github.com/ocaml-community/sedlex/archive/v2.0.zip"
35 checksum: [
36 "sha256=a08029ecfc3bebe694b146f2d754cd103846cafa1e3d56d500c80bfbeb7596ba"
37 "md5=807023962f25342b0a2c386a3742414c"
38 ]
39}