this repo has no description
1opam-version: "2.0" 2maintainer: "rvantonder@gmail.com" 3authors: "Rijnard van Tonder" 4homepage: "https://github.com/comby-tools/comby" 5bug-reports: "https://github.com/comby-tools/comby/issues" 6dev-repo: "git+https://github.com/comby-tools/comby.git" 7license: "Apache-2.0" 8build: [ 9 [ 10 "dune" 11 "build" 12 "-p" 13 name 14 "-j" 15 jobs 16 "@install" 17 "@runtest" {with-test} 18 ] 19] 20depends: [ 21 "dune" {>= "2.8.0"} 22 "ocaml" {>= "4.08.1"} 23 "core_kernel" {< "v0.15"} 24 "mparser" {>= "1.3"} 25 "mparser-pcre" 26 "ppx_deriving" 27 "ppx_deriving_yojson" {>= "3.6.0"} 28 "pcre" 29 "yojson" {< "2.0.0"} 30 # vendored dependencies 31 "bigstringaf" 32 # testing 33 "bisect_ppx" {with-test & dev & >= "2.5.0"} 34] 35synopsis: "A match engine for structural code search and replace that supports ~every language" 36description: """ 37Comby-kernel is the library that exposes the core matching engine for the comby application tool. 38""" 39url { 40 src: "https://github.com/ocaml/opam-source-archives/raw/main/comby-kernel.1.7.0.tar.gz" 41 checksum: [ 42 "md5=ee6556d8bd9b25ed0445ebe23862e48a" 43 "sha512=e6386c8ce5ef14bbcab2b0ead5b1edc39375438f56330d5f02e81e467afe6623a7e299f97f26008d77bbc62850c6dc63a7cbe5b81671b5183ff3adeee5946bb3" 44 ] 45}