this repo has no description
1opam-version: "2.0"
2synopsis: "Small library to help writing parsers"
3description: """
4This is a small library of utilities used by Semgrep and
5a few other projects developed at r2c to help writing
6parsers, especially ocamlyacc/menhir based parsers.
7"""
8
9maintainer: "Yoann Padioleau <pad@r2c.dev>"
10authors: [ "Yoann Padioleau <pad@r2c.dev>" ]
11license: "LGPL-2.1-only"
12homepage: "https://semgrep.dev"
13dev-repo: "git+https://github.com/returntocorp/semgrep"
14bug-reports: "https://github.com/returntocorp/semgrep/issues"
15
16depends: [
17 "ocaml" {>= "4.12.0"}
18 "dune" {>= "3.2.0" }
19 "commons" {>= "1.5.5"}
20 "profiling" {>= "1.5.5"}
21 "stdcompat" {>= "19"}
22]
23
24build: ["dune" "build" "-p" name "-j" jobs]
25url {
26 src:
27 "https://github.com/returntocorp/semgrep/releases/download/ast_generic_full_1.8.0/semgrep-full-1.12.0.tar.gz"
28 checksum: [
29 "md5=d72b17df65c5cea30701cdf25f186bca"
30 "sha512=b135affadcdeb892352ec269a8761e41d2b34383ee839b83855f9604983eae324732b76f1b2b8b305dfc06f1f8863dd32afe83528bf605daa910a3fc107474c5"
31 ]
32}