this repo has no description
1opam-version: "2.0" 2 3maintainer: "rudi.grinberg@gmail.com" 4authors: [ 5 "Jerome Vouillon" 6 "Thomas Gazagnaire" 7 "Anil Madhavapeddy" 8 "Rudi Grinberg" 9 "Gabriel Radanne" 10] 11license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 12homepage: "https://github.com/ocaml/ocaml-re" 13bug-reports: "https://github.com/ocaml/ocaml-re/issues" 14dev-repo: "git+https://github.com/ocaml/ocaml-re.git" 15 16build: [ 17 ["dune" "subst"] {dev} 18 ["dune" "build" "-p" name "-j" jobs] 19 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 20] 21 22depends: [ 23 "ocaml" {>= "4.12"} 24 "dune" {>= "2.0"} 25 "ounit2" {with-test} 26 "seq" 27] 28 29synopsis: "RE is a regular expression library for OCaml" 30description: """ 31Pure OCaml regular expressions with: 32* Perl-style regular expressions (module Re.Perl) 33* Posix extended regular expressions (module Re.Posix) 34* Emacs-style regular expressions (module Re.Emacs) 35* Shell-style file globbing (module Re.Glob) 36* Compatibility layer for OCaml's built-in Str module (module Re.Str) 37""" 38url { 39 src: 40 "https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz" 41 checksum: [ 42 "sha256=a01f2bf22f72c2f4ababd8d3e7635e35c1bf6bc5a41ad6d5a007454ddabad1d4" 43 "sha512=f0726826e1e677f7ecdf447d46d814a11d3844ec6e5c0527be8c73c7afdb08aacfca47ea764eda325bcd7064aff07c1d3441c935ee5a0fc99ede8707f81a451d" 44 ] 45} 46x-commit-hash: "f09672608781dc05172ad980a6e9a483c3b9d534"