this repo has no description
1opam-version: "2.0"
2synopsis: "Static analysis framework for C"
3maintainer: [
4 "Simmo Saan <simmo.saan@gmail.com>"
5 "Michael Schwarz <michael.schwarz93@gmail.com>"
6]
7authors: [
8 "Simmo Saan"
9 "Michael Schwarz"
10 "Julian Erhard"
11 "Sarah Tilscher"
12 "Ralf Vogler"
13 "Kalmer Apinis"
14 "Vesal Vojdani"
15]
16license: "MIT"
17homepage: "https://goblint.in.tum.de"
18doc: "https://goblint.readthedocs.io/en/latest/"
19patches: ["0001-Fix-deprecated-File.exists-in-update_suite.rb.patch"]
20bug-reports: "https://github.com/goblint/analyzer/issues"
21depends: [
22 "ocaml" {>= "4.10" & < "5.0"}
23 "dune" {>= "2.9.1"}
24 "goblint-cil" {>= "2.0.0" & < "2.0.2"}
25 "batteries" {>= "3.4.0"}
26 "zarith" {>= "1.8"}
27 "yojson" {>= "2.0.0"}
28 "qcheck-core"
29 "ppx_deriving"
30 "ppx_deriving_hash"
31 "ppx_deriving_yojson" {>= "3.7.0"}
32 "ppx_blob" {>= "0.6.0"}
33 "ounit2" {with-test}
34 "qcheck-ounit" {with-test}
35 "odoc" {with-doc}
36 "fpath"
37 "dune-site"
38 "json-data-encoding"
39 "jsonrpc" {>= "1.12"}
40 "sha" {>= "1.12"}
41 "cpu"
42 "arg-complete"
43 "yaml" {>= "3.0.0"}
44 "uuidm"
45 "conf-gmp" {>= "3"}
46 "conf-ruby" {with-test}
47 "benchmark" {with-test}
48 "conf-gcc"
49]
50depopts: ["apron" "z3"]
51conflicts: [
52 "result" {< "1.5"}
53 "apron" {>= "0.9.15"}
54]
55build: [
56 ["dune" "subst"] {dev}
57 [
58 "dune"
59 "build"
60 "-p"
61 name
62 "-j"
63 jobs
64 "--promote-install-files=false"
65 "@install"
66 "@runtest" {with-test}
67 "@doc" {with-doc}
68 ]
69 ["dune" "install" "-p" name "--create-install-files" name]
70]
71dev-repo: "git+https://github.com/goblint/analyzer.git"
72# on `dune build` goblint.opam will be generated from goblint.opam.template and dune-project
73# also remember to generate/adjust goblint.opam.locked!
74available: os-distribution != "alpine" & arch != "arm64"
75url {
76 src:
77 "https://github.com/goblint/analyzer/releases/download/v2.0.1/goblint-2.0.1.tbz"
78 checksum: [
79 "sha256=dba2b664c7c125687e708e871d83fbfb6ba6d9ee98d235b4850d9a238caa84de"
80 "sha512=529987cde39691ad9e955000a3603e89c1c8cf14ed5e8b4cd3a7fc26e47d016aff571b472e2329725133c46f8d0cb45a05b88994eeffaa221a4d31b4c543adcd"
81 ]
82}
83x-commit-hash: "705bc3a3b4aae589dc61123b29f971a5eda27d12"
84extra-source "0001-Fix-deprecated-File.exists-in-update_suite.rb.patch" {
85 src:
86 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/goblint/0001-Fix-deprecated-File.exists-in-update_suite.rb.patch"
87 checksum:
88 "sha256=204e8f5b632178acc1ea29ef5a757ada8c06ffce041fde8347ef555b91d93efd"
89}
90# pin-depends: [
91 # published goblint-cil 2.0.0 is currently up-to-date, so no pin needed
92 # [ "goblint-cil.2.0.0" "git+https://github.com/goblint/cil.git#85ca8cf757580c67c53b5db76bce5be048ce5541" ]
93 # TODO: add back after release, only pinned for optimization (https://github.com/ocaml-ppx/ppx_deriving/pull/252)
94 # [ "ppx_deriving.5.2.1" "git+https://github.com/ocaml-ppx/ppx_deriving.git#0a89b619f94cbbfc3b0fb3255ab4fe5bc77d32d6" ]
95 # TODO: add back after release, only pinned for CI stability
96 # [ "apron.v0.9.13" "git+https://github.com/antoinemine/apron.git#c852ebcc89e5cf4a5a3318e7c13c73e1756abb11"]
97# ]