-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathlambdapi.opam
More file actions
61 lines (61 loc) · 1.86 KB
/
lambdapi.opam
File metadata and controls
61 lines (61 loc) · 1.86 KB
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
55
56
57
58
59
60
61
# This file is generated by dune, edit dune-project instead
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."""
x-maintenance-intent: ["(latest)"]
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"
depends: [
"dune" {>= "3.7"}
"dune-site" {>= "3.17"}
"ocaml" {>= "4.10"}
"dream-pure" {>= "1.0.0~alpha2"}
"dream-httpaf" {>= "1.0.0~alpha3"}
"dream" {>= "1.0.0~alpha6"}
"menhir" {>= "20200624"}
"sedlex" {>= "3.2"}
"alcotest" {with-test}
"alt-ergo" {with-test}
"dedukti" {with-test & >= "2.7"}
"timed" {>= "1"}
"pratter" {>= "5" & < "6"}
"camlp-streams" {>= "5"}
"why3" {>= "1.8"}
"yojson" {>= "1.6"}
"cmdliner" {>= "1.1"}
"stdlib-shims" {>= "0.1"}
"odoc" {with-doc}
"lwt_ppx" {>= "1"}
"uri" {>= "1.1"}
"ppx_inline_test"
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/Deducteam/lambdapi.git"