-
Notifications
You must be signed in to change notification settings - Fork 16
/
cooltt.opam
35 lines (35 loc) · 1.09 KB
/
cooltt.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
opam-version: "2.0"
name: "cooltt"
version: "0.0"
maintainer: "Jonathan Sterling <jmsterli@cs.cmu.edu>"
authors: ["The RedPRL Development Team"]
homepage: "https://github.com/RedPRL/cooltt"
bug-reports: "https://github.com/RedPRL/cooltt/issues"
dev-repo: "git+https://github.com/RedPRL/cooltt.git"
synopsis: "Experimental implementation of Cartesian cubical type theory"
license: "Apache-2.0"
depends: [
"dune" {>= "2.0"}
"ocaml" {>= "5.0"}
"ppx_deriving" {>= "4.4.1"}
"bantorra" {>= "0.1" & < "0.2"}
"bwd" {>= "2.2"}
"cmdliner" {>= "1.1"}
"containers" {>= "3.4"}
"ezjsonm" {>= "1.2.0"}
"menhir" {>= "20180703"}
"uuseg" {>= "12.0.0"}
"uutf" {>= "1.0.2"}
"yuujinchou" {>= "5.0"}
"odoc" {with-doc}
"kado"
]
pin-depends: [
[ "kado.~dev" "git+https://github.com/RedPRL/kado#65573a1c0f14f6b09836f8ae317fda17f5900968" ]
[ "bantorra.0.1.0" "git+https://github.com/RedPRL/bantorra#1e78633d9a2ef7104552a24585bb8bea36d4117b" ]
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test}
["dune" "build" "-p" name "-j" jobs "@doc"] {with-doc}
]