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.3"} 28 "ocaml-migrate-parsetree" {< "2.0.0"} 29 "gen" 30 "uchar" 31] 32url { 33 src: "https://github.com/ocaml-community/sedlex/archive/v2.2.tar.gz" 34 checksum: [ 35 "md5=5bb2b819ac42959b8d7583abd2a2e610" 36 "sha512=c38940654d8d2a4b8f627bc9109b0fd983c520d8db05bf4b514ddc05cf50946c086d3558dfced64cc8f2b4eaabc6155426eb44ee6d903e3520ebb65daadf990a" 37 ] 38}