-
Notifications
You must be signed in to change notification settings - Fork 2
/
colis-language.opam
53 lines (44 loc) · 1.61 KB
/
colis-language.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
opam-version: "2.0"
name: "CoLiS-language"
version: "0.1"
synopsis: "Syntax, parsers and interpreters for the CoLiS language"
description: """
Syntax, parsers and interpreters for the CoLiS language
"""
homepage: "https://github.com/colis-anr/colis-language"
bug-reports: "https://github.com/colis-anr/colis-language/issues"
authors: [
"Benedikt Becker <[email protected]"
"Nicolas Jeannerod <[email protected]>"
]
maintainer: "Nicolas Jeannerod <[email protected]>"
pin-depends: [
[ "morbig.dev" "git+https://github.com/colis-anr/morbig.git" ]
[ "morsmall.dev" "git+https://github.com/colis-anr/morsmall.git" ]
[ "colis-constraints.dev" "git+https://github.com/colis-anr/colis-constraints.git" ]
[ "why3.dev" "git+https://gitlab.inria.fr/why3/why3.git#268e19920" ] # Will be 1.3
]
depexts: [
# For the installation of the automatic provers, see Dockerfile
["wget" "autoconf" "automake"] { os-distribution = "ubuntu"
| os-distribution = "debian"
| os-distribution = "archlinux"}
]
depends: [
"batteries"
"camlzip" {(build | with-test) & = "1.07"} # Version fixed for alt-ergo 2.2.0
"cmdliner"
"colis-constraints" {= "dev"}
"morbig" {= "dev"}
"morsmall" {= "dev"}
"ocaml" {build & >= "4.05"}
"odoc" {with-doc}
"ppx_deriving" {build}
"ppx_protocol_conv_yaml" {with-test}
"why3" {= "dev" & (build | with-test)}
"yaml" {with-test & >= "1.0.0"}
"zarith"
]
build: [
[make]
]