this repo has no description
1opam-version: "2.0" 2synopsis: "The Alt-Ergo SMT prover library" 3description: """ 4This is the core library used in the Alt-Ergo SMT solver. 5 6Alt-Ergo is an automatic theorem prover of mathematical formulas. It was developed at LRI, and is now maintained at OCamlPro. 7 8See more details on http://alt-ergo.ocamlpro.com/""" 9maintainer: ["Alt-Ergo developers <alt-ergo@ocamlpro.com>"] 10authors: ["Alt-Ergo developers <alt-ergo@ocamlpro.com>"] 11homepage: "https://alt-ergo.ocamlpro.com/" 12doc: "https://ocamlpro.github.io/alt-ergo" 13bug-reports: "https://github.com/OCamlPro/alt-ergo/issues" 14depends: [ 15 "ocaml" {>= "4.08.1"} 16 "dune" {>= "3.14"} 17 "dune-build-info" 18 "dolmen" {>= "0.10"} 19 "dolmen_type" {>= "0.10"} 20 "dolmen_loop" {>= "0.10"} 21 "ocplib-simplex" {>= "0.5.1"} 22 "zarith" {>= "1.11"} 23 "seq" 24 "fmt" {>= "0.9.0"} 25 "stdlib-shims" 26 "ppx_blob" {>= "0.7.2"} 27 "ppx_deriving" 28 "camlzip" {>= "1.07"} 29 "odoc" {with-doc} 30 "ppx_deriving" 31 "qcheck" {with-test & = "0.22"} 32] 33conflicts: [ 34 "ppxlib" {< "0.30.0"} 35 "result" {< "1.5"} 36] 37build: [ 38 ["dune" "subst"] {dev} 39 [ 40 "dune" 41 "build" 42 "-p" 43 name 44 "-j" 45 jobs 46 "--promote-install-files=false" 47 "@install" 48 "@runtest" {with-test} 49 "@doc" {with-doc} 50 ] 51 ["dune" "install" "-p" name "--create-install-files" name] 52] 53dev-repo: "git+https://github.com/OCamlPro/alt-ergo.git" 54# This part comes from the template. Please edit alt-ergo-lib.opam.template 55# and not alt-ergo-lib.opam which is generated by dune 56tags: "org:OCamlPro" 57 58license: [ 59 "LicenseRef-OCamlpro-Non-Commercial" 60 "Apache-2.0" 61] 62url { 63 src: 64 "https://github.com/OCamlPro/alt-ergo/releases/download/v2.6.0/alt-ergo-2.6.0.tbz" 65 checksum: [ 66 "sha256=1269311af25278a466892ba878cc888ba59f177f53dd03f12a2c623b03fcf37e" 67 "sha512=8a841e1f295e889fa9cb95aa4021bbb481d73279e99512c2afb3510e1f6c9d367113ee6bd3a90bc51111fa3e766a302633e9d5d18fde7660b139cd19a271eb23" 68 ] 69} 70x-commit-hash: "af8193ed37e039010ed60486ac88bbbfbdec9614"