forked from Deducteam/lambdapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lambdapi.opam
39 lines (34 loc) · 1.17 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
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.04.0" }
"dune" { build & >= "1.3.0" }
"menhir"
"bindlib" { >= "5.0.0" }
"earley" { >= "2.0.0" }
"timed" { >= "1.0" }
# tests
"ppx_inline_test" { with-test }
# lp-lsp dependencies
"yojson" { >= "1.6.0" }
"cmdliner"
]
build: [ [ "dune" "build" "-p" name "-j" jobs ] ]
run-test: [ [ "dune" "runtest" "-p" name "-j" jobs ] ]