this repo has no description
1opam-version: "2.0"
2synopsis: "Static analysis framework for C"
3maintainer: [
4 "Michael Schwarz <michael.schwarz93@gmail.com>"
5 "Simmo Saan <simmo.saan@gmail.com>"
6 "Ralf Vogler <ralf.vogler@gmail.com>"
7]
8authors: [
9 "Vesal Vojdani"
10 "Kalmer Apinis"
11 "Ralf Vogler"
12 "Michael Schwarz"
13 "Julian Erhard"
14 "Simmo Saan"
15]
16license: "MIT"
17homepage: "https://goblint.in.tum.de"
18doc: "https://goblint.readthedocs.io/en/latest/"
19bug-reports: "https://github.com/goblint/analyzer/issues"
20depends: [
21 "ocaml" {>= "4.09"}
22 "dune" {>= "2.9.1"}
23 "goblint-cil" {>= "1.8.2" & < "2.0.0"}
24 "batteries" {>= "3.2.0" & < "3.4.0"}
25 "zarith" {>= "1.8"}
26 "qcheck-core"
27 "ppx_distr_guards" {>= "0.2"}
28 "ppx_deriving"
29 "ppx_deriving_yojson"
30 "ocaml-monadic" {>= "0.5"}
31 "ounit2" {with-test}
32 "odoc" {with-doc}
33 "dune-site"
34 "sha" {>= "1.12"}
35 "conf-gmp" {>= "3"}
36 "conf-ruby" {with-test}
37 "benchmark" {with-test}
38 "conf-gcc"
39]
40depopts: ["apron" "z3"]
41build: [
42 ["dune" "subst"] {dev}
43 [
44 "dune"
45 "build"
46 "-p"
47 name
48 "-j"
49 jobs
50 "--promote-install-files=false"
51 "@install"
52 "@runtest" {with-test}
53 "@doc" {with-doc}
54 ]
55 ["dune" "install" "-p" name "--create-install-files" name]
56]
57dev-repo: "git+https://github.com/goblint/analyzer.git"
58url {
59 src:
60 "https://github.com/goblint/analyzer/releases/download/v1.1.1/goblint-1.1.1.tbz"
61 checksum: [
62 "sha256=999272bfbd3b9b96fcd58987b237ac6e9fa6d92ef935cc89f1ea2b4205185141"
63 "sha512=f3bf6ab71cf8c258d3290da4bf9f6fe42d7c671822e0efeb0fc50afdff078ab15e352237e5c1db31c5aa3a9d430691268ed2e5e00da10f2615835f672f91683d"
64 ]
65}
66x-commit-hash: "c35cb34d985a98308e65666cfb547f2447045ce9"
67conflicts: [
68 "apron" {>= "0.9.15"}
69]
70# on `dune build` goblint.opam will be generated from goblint.opam.template and dune-project
71# also remember to generate/adjust goblint.opam.locked!
72# pin-depends: [
73 # the published goblint-cil 1.8.2 is currently up-to-date, so no pin needed
74 # [ "goblint-cil.1.8.1" "git+https://github.com/goblint/cil.git#c16dddf74f6053a8b3fac07ca2feff18d4d56964" ]
75 # TODO: add back after release, only pinned for optimization (https://github.com/ocaml-ppx/ppx_deriving/pull/252)
76 # [ "ppx_deriving.5.2.1" "git+https://github.com/ocaml-ppx/ppx_deriving.git#0a89b619f94cbbfc3b0fb3255ab4fe5bc77d32d6" ]
77 # quoter workaround reverted for release, so no pin needed
78 # [ "ppx_deriving_yojson.3.6.1" "git+https://github.com/ocaml-ppx/ppx_deriving_yojson.git#e030f13a3450e9cf7d2c43fa04e709ef608486cd" ]
79 # TODO: add back after release, only pinned for CI stability
80 # [ "apron.v0.9.13" "git+https://github.com/antoinemine/apron.git#c852ebcc89e5cf4a5a3318e7c13c73e1756abb11"]
81# ]