this repo has no description
1opam-version: "2.0" 2maintainer: "Petter A. Urkedal <paurkedal@gmail.com>" 3authors: [ 4 "Petter A. Urkedal <paurkedal@gmail.com>" 5 "Gabriel Radanne <drupyog@zoho.com>" 6] 7license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception" 8homepage: "https://github.com/paurkedal/ppx_regexp" 9bug-reports: "https://github.com/paurkedal/ppx_regexp/issues" 10depends: [ 11 "ocaml" {>= "4.02.3"} 12 "dune" {>= "1.11"} 13 "ocaml-migrate-parsetree" {>= "1.4.0" & < "2.0.0"} 14 "re" {>= "1.7.1"} 15 "ppx_tools_versioned" {>= "5.2.3"} 16 "qcheck" {with-test} 17] 18build: ["dune" "build" "-p" name "-j" jobs] 19dev-repo: "git+https://github.com/paurkedal/ppx_regexp.git" 20synopsis: "Matching Regular Expressions with OCaml Patterns" 21description: """ 22This syntax extension turns 23 24 match%pcre x with 25 | {|re1|} -> e1 26 ... 27 | {|reN|} -> eN 28 | _ -> e0 29 30into suitable invocations to the ocaml-re library. The patterns are plain 31strings of the form accepted by `Re_pcre`, except groups can be bound to 32variables using the syntax `(?<var>...)`. The type of `var` will be 33`string` if a match is of the groups is guaranteed given a match of the 34whole pattern, and `string option` if the variable is bound to or nested 35below an optionally matched group. 36""" 37url { 38 src: 39 "https://github.com/paurkedal/ppx_regexp/releases/download/v0.4.3/ppx_regexp-v0.4.3.tbz" 40 checksum: [ 41 "sha256=70cbf4495de5e8ca4aada49c4fe25c586858dade8448efef29fd2d2ea620d413" 42 "sha512=284f4b7c99125e26697f1691909fb2ba6e9d6c7fb74c6272c442bee84211486d566183db928b1bc5b3a2c385372e830cfec3e6fb3cb4184f16805bb420bc85be" 43 ] 44}