Skip to content

Commit 3c1e5ca

Browse files
authored
Merge pull request ocaml#18279 from daniel-larraz/opam-publish-kind2.v1.3.1
Package kind2.v1.3.1
2 parents 7c396b2 + 31830f4 commit 3c1e5ca

File tree

1 file changed

+45
-0
lines changed
  • packages/kind2/kind2.1.3.1

1 file changed

+45
-0
lines changed

packages/kind2/kind2.1.3.1/opam

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"Multi-engine, parallel, SMT-based automatic model checker for safety properties of Lustre programs"
4+
description:
5+
"Kind 2 is an open-source, multi-engine, SMT-based automatic model checker for safety properties of finite-state or infinite-state synchronous reactive systems expressed as in an extension of the Lustre language. In its basic configuration it takes as input a Lustre file annotated with properties to be proven invariant, and outputs for each property either a confirmation or a counterexample, i.e., a sequence inputs that falsifies the property. More advanced features include contract-based compositional verification, proof generation for proven properties, and contract-based test generation."
6+
maintainer: ["Daniel Larraz <daniel-larraz@uiowa.edu>"]
7+
authors: ["The Kind 2 development team"]
8+
license: "Apache-2.0"
9+
homepage: "https://kind2-mc.github.io/kind2"
10+
doc: "https://kind.cs.uiowa.edu/kind2_user_doc"
11+
bug-reports: "https://github.com/kind2-mc/kind2/issues"
12+
depends: [
13+
"ocaml" {>= "4.07"}
14+
"dune" {>= "2.0"}
15+
"dune-build-info"
16+
"menhir"
17+
"num"
18+
"odoc" {with-doc}
19+
"ounit2" {with-test}
20+
"z3" {< "4.8.9" & with-test}
21+
"yojson"
22+
"zmq"
23+
]
24+
build: [
25+
["dune" "subst"] {dev}
26+
[
27+
"dune"
28+
"build"
29+
"-p"
30+
name
31+
"-j"
32+
jobs
33+
"@install"
34+
"@runtest" {with-test}
35+
"@doc" {with-doc}
36+
]
37+
]
38+
dev-repo: "git+https://github.com/kind2-mc/kind2.git"
39+
url {
40+
src: "https://github.com/kind2-mc/kind2/archive/v1.3.1.tar.gz"
41+
checksum: [
42+
"md5=c17079ff685f44491155105d4d9dc127"
43+
"sha512=d021ec286d12521c123f7d4c8d661d308f165933d4aed4758f0de28895c1ccad5d32a1608553e9837b7f780a696b80901a4548bd2589a7e6973d1fcde492b01d"
44+
]
45+
}

0 commit comments

Comments
 (0)