-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkado.opam
More file actions
24 lines (24 loc) · 810 Bytes
/
kado.opam
File metadata and controls
24 lines (24 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
opam-version: "2.0"
name: "kado"
synopsis: "Cofibrations in Cartecian Cubical Type Theory"
description: """
Cofibrations in Cartecian cubical type theory as described in the paper 'Syntax and models of Cartesian cubical type theory'
"""
maintainer: "favonia <favonia@gmail.com>"
authors: "The RedPRL Development Team"
license: "Apache-2.0 WITH LLVM-exception"
homepage: "https://github.com/RedPRL/kado"
bug-reports: "https://github.com/RedPRL/kado/issues"
dev-repo: "git+https://github.com/RedPRL/kado.git"
depends: [
"dune" {>= "2.0"}
"ocaml" {>= "4.10"}
"bwd" {>= "1.0"}
"qcheck-core" {>= "0.18" & with-test}
"odoc" {with-doc}
]
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}
]