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/sgrep/archive/refs/tags/lib_parsing_1.5.5.tar.gz"
28 checksum: [
29 "md5=eb2ff5de81f03b32843e02747ec26625"
30 "sha512=33f5d21ada3be007d74abfe9d45bf4140a2f1241adfaa2ac2d35a6dbb9106b7bc959068f64257d7dc9da4b16399e30db5234f9cc2e0f1d7f7039b88e5c6bab60"
31 ]
32}