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