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"
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.2/electrod-0.6.2.tbz"
54 checksum: [
55 "sha256=83716b3ec066cbdd807354cec436d93c47f6987e60383094918cc3642107df2b"
56 "sha512=469f3c68dd44a95ce89a6b80d73e9938e36342cd99afb7cd77b4612e597f02e03c50bcd99ba33eb4fd21d6836796c04eacb6bf0da415f03f622f5b0a9969c1f9"
57 ]
58}