forked from RedPRL/mugen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mugen.opam
23 lines (23 loc) · 882 Bytes
/
mugen.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
opam-version: "2.0"
name: "mugen"
synopsis: "Universe levels and universe polymorphism"
description: """
This package implements the generalization of Conor McBride’s crude but effective stratification. The theory behind the design is discussed in the POPL 2023 paper “An Order-Theoretic Analysis of Universe Polymorphism.”
"""
maintainer: "favonia <favonia@gmail.com>"
authors: "The RedPRL Development Team"
license: "Apache-2.0 WITH LLVM-exception"
homepage: "https://github.com/RedPRL/mugen"
bug-reports: "https://github.com/RedPRL/mugen/issues"
dev-repo: "git+https://github.com/RedPRL/mugen.git"
depends: [
"dune" {>= "2.0"}
"ocaml" {>= "4.13"}
"bwd" {>= "2.1" & 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}
]