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/" 19bug-reports: "https://github.com/goblint/analyzer/issues" 20patches: ["0001-Fix-deprecated-File.exists-in-update_suite.rb.patch"] 21depends: [ 22 "ocaml" {>= "4.10" & < "5.0"} 23 "dune" {>= "3.0"} 24 "goblint-cil" {>= "2.0.1" & < "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 "catapult" 46 "catapult-file" 47 "conf-gmp" {>= "3"} 48 "conf-ruby" {with-test} 49 "benchmark" {with-test} 50 "conf-gcc" 51] 52depopts: ["apron" "z3"] 53conflicts: [ 54 "result" {< "1.5"} 55 "apron" {>= "0.9.15"} 56] 57build: [ 58 ["dune" "subst"] {dev} 59 [ 60 "dune" 61 "build" 62 "-p" 63 name 64 "-j" 65 jobs 66 "--promote-install-files=false" 67 "@install" 68 "@runtest" {with-test} 69 "@doc" {with-doc} 70 ] 71 ["dune" "install" "-p" name "--create-install-files" name] 72] 73dev-repo: "git+https://github.com/goblint/analyzer.git" 74# on `dune build` goblint.opam will be generated from goblint.opam.template and dune-project 75# also remember to generate/adjust goblint.opam.locked! 76available: os-distribution != "alpine" & arch != "arm64" 77url { 78 src: 79 "https://github.com/goblint/analyzer/releases/download/v2.1.0/goblint-2.1.0.tbz" 80 checksum: [ 81 "sha256=bfc412ec2e447eaef6f4f83892e3511ebf305593cb00561c1406be3ae8bf48e9" 82 "sha512=5f2a162e5f36bffafc9836b0d18b5b2808cecfa6bf68f83bb7d1e8b9947ac74cf07776eb09274b4b29d55c897a45a10768f0d9ed25810cf6ba2409c525e4cd4d" 83 ] 84} 85x-commit-hash: "694375b2081f51f381792fe02c3dd69a4a2e9f97" 86extra-source "0001-Fix-deprecated-File.exists-in-update_suite.rb.patch" { 87 src: 88 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/goblint/0001-Fix-deprecated-File.exists-in-update_suite.rb.patch" 89 checksum: 90 "sha256=204e8f5b632178acc1ea29ef5a757ada8c06ffce041fde8347ef555b91d93efd" 91} 92# pin-depends: [ 93 # published goblint-cil 2.0.1 is currently up-to-date, so no pin needed 94 # [ "goblint-cil.2.0.0" "git+https://github.com/goblint/cil.git#3261501a8c7d712748711341677bf023437e3c56" ] 95 # TODO: add back after release, only pinned for optimization (https://github.com/ocaml-ppx/ppx_deriving/pull/252) 96 # [ "ppx_deriving.5.2.1" "git+https://github.com/ocaml-ppx/ppx_deriving.git#0a89b619f94cbbfc3b0fb3255ab4fe5bc77d32d6" ] 97 # TODO: add back after release, only pinned for CI stability 98 # [ "apron.v0.9.13" "git+https://github.com/antoinemine/apron.git#c852ebcc89e5cf4a5a3318e7c13c73e1756abb11"] 99# ]