-
Notifications
You must be signed in to change notification settings - Fork 35
/
lambdapi.opam
55 lines (54 loc) · 1.62 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
45
46
47
48
49
50
51
52
53
54
opam-version: "2.0"
synopsis: "Proof assistant for the λΠ-calculus modulo rewriting"
description: """
Lambdapi is an interactive proof assistant for the λΠ-calculus modulo
rewriting. It can call external automated theorem provers via Why3.
The user manual is on https://lambdapi.readthedocs.io/.
A standard library and other developments are available on
https://github.com/Deducteam/opam-lambdapi-repository/. An extension
for Emacs is available on MELPA. An extension for VSCode is available
on the VSCode Marketplace. Lambdapi can read Dedukti files. It
includes checkers for local confluence and subject reduction. It also
provides commands to export Lambdapi files to other formats or
systems: Dedukti, Coq, HRS, CPF.
"""
maintainer: ["dedukti-dev@inria.fr"]
authors: ["Deducteam"]
license: "CECILL-2.1"
homepage: "https://github.com/Deducteam/lambdapi"
bug-reports: "https://github.com/Deducteam/lambdapi/issues"
dev-repo: "git+https://github.com/Deducteam/lambdapi.git"
depends: [
"dune" {>= "3.7"}
"ocaml" {>= "4.08.0"}
"menhir" {>= "20200624"}
"sedlex" {>= "3.2"}
"alcotest" {with-test}
"dedukti" {with-test & >= "2.7"}
"bindlib" {>= "6.0.0"}
"timed" {>= "1.0"}
"pratter" {>= "3.0.0" & < "4"}
"camlp-streams" {>= "5.0"}
"why3" {>= "1.6.0" & < "1.8~"}
"yojson" {>= "1.6.0"}
"cmdliner" {>= "1.1.0"}
"stdlib-shims" {>= "0.1.0"}
"odoc" {with-doc}
"lwt_ppx" {>= "1.0.0"}
"dream" {>= "1.0.0~alpha3"}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
conflicts: [ "ocaml-option-bytecode-only" ]