-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnv.opam
34 lines (34 loc) · 964 Bytes
/
nv.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
opam-version: "2.0"
name: "nv"
version: "~dev"
synopsis: "Educational materials on network verification"
maintainer: "Tim Alberdingk Thijm <[email protected]>"
authors:
"Devon Loehr <[email protected]>, Nick Giannarakis <[email protected]>, Tim Alberdingk Thijm <[email protected]>, David Walker <[email protected]>"
license: "MIT"
homepage: "https://github.com/NetworkVerification/nv"
dev-repo: "git+https://github.com/NetworkVerification/nv"
bug-reports: "https://github.com/NetworkVerification/nv/issues"
depends: [
"dune" { build }
"ANSITerminal"
"batteries"
"fileutils"
"fix"
"integers"
"lru-cache"
"menhir"
"mlcuddidl" { <= "3.0.4" }
"ocamlgraph"
"odoc"
"ounit"
"parmap"
"ppx_deriving"
"ppx_deriving_argparse"
"zarith"
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-f" "--no-buffer" "-j" jobs] {with-test}
["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
]