this repo has no description
1opam-version: "2.0" 2maintainer: "guillaume.melquiond@inria.fr" 3authors: [ 4 "François Bobot" 5 "Jean-Christophe Filliâtre" 6 "Claude Marché" 7 "Guillaume Melquiond" 8 "Andrei Paskevich" 9] 10 11homepage: "http://why3.lri.fr/" 12license: "LGPL-2.1-only" 13doc: "http://why3.lri.fr/doc/" 14bug-reports: "https://gitlab.inria.fr/why3/why3/issues" 15dev-repo: "git+https://gitlab.inria.fr/why3/why3.git" 16tags: [ 17 "deductive" 18 "program verification" 19 "formal specification" 20 "automated theorem prover" 21 "interactive theorem prover" 22] 23build: [ 24 [ 25 "./configure" 26 "--prefix" 27 prefix 28 "--disable-frama-c" 29 "--disable-coq-libs" 30 "--disable-js-of-ocaml" 31 "--disable-ide" 32 ] 33 [make "-j%{jobs}%" "all" "opt" "byte"] 34 [make "doc" "stdlibdoc" "apidoc"] {with-doc} 35] 36install: [ 37 [make "install" "install-lib"] 38 [make "DOCDIR=%{doc}%/why3" "install-doc"] {with-doc} 39] 40remove: [ 41 ["rm" "%{bin}%/why3"] 42 ["rm" "-r" "%{lib}%/why3"] 43 ["rm" "-r" "%{share}%/why3"] 44] 45 46flags: [ light-uninstall ] 47 48depends: [ 49 "ocaml" {>= "4.02.3" & < "4.09.0"} 50 "ocamlfind" {build} 51 "menhir" {>= "20151112" & < "20200123"} 52 "num" 53] 54depopts: [ 55 "zarith" 56 "camlzip" 57 "ocamlgraph" 58] 59 60conflicts: [ 61 "why3-base" 62 "ocamlgraph" {< "1.8.2"} 63] 64synopsis: "Why3 environment for deductive program verification" 65description: """ 66Why3 provides a rich language for specification and programming, called 67WhyML, and relies on external theorem provers, both automated and 68interactive, to discharge verification conditions. Why3 comes with a 69standard library of logical theories (integer and real arithmetic, 70Boolean operations, sets and maps, etc.) and basic programming data 71structures (arrays, queues, hash tables, etc.). A user can write WhyML 72programs directly and get correct-by-construction OCaml programs 73through an automated extraction mechanism. WhyML is also used as an 74intermediate language for the verification of C, Java, or Ada 75programs. 76 77Why3 is a complete reimplementation of the former Why platform. Among 78the new features are: numerous extensions to the input language, a new 79architecture for calling external provers, and a well-designed API, 80allowing to use Why3 as a software library. An important emphasis is 81put on modularity and genericity, giving the end user a possibility to 82easily reuse Why3 formalizations or to add support for a new external 83prover if wanted.""" 84url { 85 src: "https://why3.gitlabpages.inria.fr/releases/why3-1.0.0.tar.gz" 86 checksum: [ 87 "sha256=b65f4c1661ac8a6240778e6fa553c46098a26d029b02e5cf0e05b0c0630300a2" 88 "md5=3477ce6b826bbba1562117239f0e9f81" 89 ] 90}