this repo has no description
1opam-version: "2.0"
2build: [
3 ["dune" "subst"] {dev}
4 ["dune" "build" "-p" name "-j" jobs]
5 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
6 ["dune" "build" "-p" name "@doc"] {with-doc}
7]
8maintainer: ["David Chemouil <david.chemouil+git@onera.fr>"]
9authors: ["David Chemouil" "Julien Brunel"]
10bug-reports: "https://github.com/grayswandyr/electrod/issues"
11homepage: "https://github.com/grayswandyr/electrod"
12doc: "https://grayswandyr.github.io/electrod/api"
13license: "MPL-2.0"
14dev-repo: "git+https://github.com/grayswandyr/electrod.git"
15synopsis: "Formal analysis for the Electrod formal pivot language"
16description: """
17Electrod is a model finder inspired by Kodkod. It takes as input a
18model expressed in a mixture of relational first-order logic (RFOL)
19over bounded domains and linear temporal logic (LTL) over an unbounded
20time horizon. Then it compiles the model to a problem for a solver (currently
21the NuSMV and nuXmv tools) to produce example or counter-example traces.
22Electrod is primarily meant to be used as a backend for the Electrum formal method and tool."""
23depends: [
24 "ocaml" {>= "4.05.0"}
25 "dune" {>= "1.10"}
26 "dune-build-info"
27 "cmdliner"
28 "containers" {>= "2.0" & < "3.0"}
29 "fmt" {>= "0.8.7"}
30 "gen"
31 "hashcons"
32 "logs"
33 "menhir" {< "20211215"}
34 "mtime" {< "2.0.0"}
35 "ppx_inline_test"
36 "printbox" {< "0.6"}
37 "iter"
38 "stdcompat"
39 "stdlib-shims"
40 "visitors" {>= "20190513"}
41]
42url {
43 src:
44 "https://github.com/grayswandyr/electrod/releases/download/0.3.2/electrod-0.3.2.tbz"
45 checksum: [
46 "sha256=c58502de17f5b8d739963b5b5d7c761883305bc2b6464fc37769aae4bb31a28c"
47 "sha512=bc15032cbda06b0eb64d55cc7800d6c992c0823bb86609ddc5e56744fd0c76ea25b4f4ad7cafdee6fcaa2f109e48ca99f4270919f9a2ea4c7bf53f30b0ee3677"
48 ]
49}