forked from Deducteam/lambdapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
lambdapi.opam
44 lines (40 loc) · 1.25 KB
/
lambdapi.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
synopsis: "Proof assistant based on the λΠ-calculus modulo rewriting"
description:
"""
Proof assistant based on the λΠ-calculus modulo rewriting,
mostly compatible with Dedukti.
This package contains both the `lambdapi` proof assistant and the `lp-lsp`
Language Server Protocol helper for IDEs to check lambdapi files.
"""
opam-version: "2.0"
maintainer: "[email protected]"
bug-reports: "https://github.com/Deducteam/lambdapi/issues"
homepage: "https://github.com/Deducteam/lambdapi"
dev-repo: "git+https://github.com/Deducteam/lambdapi.git"
authors: [
"Rodolphe Lepigre <[email protected]>"
"Frédéric Blanqui <[email protected]>"
"Emilio Jesús Gallego Arias <[email protected]>" ]
license: "CeCILL 2.1"
doc: "https://deducteam.github.io/lambdapi/"
depends: [
"ocaml" { >= "4.05.0" }
"dune" { >= "1.3.0" }
"menhir"
"bindlib" { >= "5.0.1" }
"earley" { = "2.0.0" }
"timed" { = "1.0" }
"why3" { >= "1.3.1" }
"yojson" { >= "1.6.0" }
"cmdliner" { >= "1.0.3" }
"stdlib-shims"
]
post-messages: [
"To use the Emacs mode, add the following line to ~/.emacs.d/init.el,
or ~/.emacs:\n
\t(load \"lambdapi-site-file\")\n"
]
build: [
[ "dune" "subst" ]
[ "dune" "build" "-p" name "-j" jobs ]
]