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.02.3" & < "5.0"}
26 "dune" {>= "1.8"}
27 "ppx_tools_versioned" {>= "5.2.2"}
28 "ocaml-migrate-parsetree" {< "2.0.0"}
29 "gen"
30 "uchar"
31]
32url {
33 src: "https://github.com/ocaml-community/sedlex/archive/v2.1.zip"
34 checksum: [
35 "md5=30fdddb1c9d8301bad3d5b3d2cbbefbf"
36 "sha512=7c937c5ed234ac6f97aacec5e9f185c4490ab8cc953d071b1bbb93983e5518c4c0fb96782a43348631270c7b4f3e0c5dc312777644724adf955f9a58070b3f12"
37 ]
38}