forked from jscoq/jscoq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjscoq.opam
41 lines (38 loc) · 1.73 KB
/
jscoq.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
synopsis: "The jsCoq Interactive Proof System"
description: "A port of Coq to JavaScript -- run Coq in your browser"
name: "jscoq"
opam-version: "2.0"
maintainer: "[email protected]"
authors: "Emilio Jesús Gallego Arias, Shachar Itzhaky, Benoît Pin"
homepage: "https://github.com/jscoq/jscoq"
bug-reports: "https://github.com/jscoq/jscoq/issues"
dev-repo: "git+https://github.com/jscoq/jscoq.git"
license: "AGPL-3.0-or-later"
doc: "https://github.com/jscoq/jscoq#readme"
depends: [
"ocaml" { >= "4.14.2" }
"dune" { >= "3.16" }
# See https://github.com/ocsigen/js_of_ocaml/issues/1668
"js_of_ocaml" { >= "4.0.0" & < "4.1" }
"js_of_ocaml-ppx" { >= "4.0.0" & < "4.1" }
"js_of_ocaml-lwt" { >= "4.0.0" & < "4.1" }
"yojson" { >= "2.0.2" }
"ppx_deriving_yojson" { >= "3.5.3" }
"ppx_import" { >= "1.11.0" }
"lwt_ppx" { >= "2.0.1" }
# We should just rely on OPAM's coq-lsp but this is still early
"sexplib" { >= "v0.15.0" }
"ppx_sexp_conv" { >= "v0.15.1" & < "v0.18" }
"ppx_hash" { >= "v0.15.0" & < "v0.18" }
"ppx_compare" { >= "v0.15.0" & < "v0.18" }
"uri" { >= "4.2.0" }
"dune-build-info" { >= "3.16.0" }
# We build a local, patched Coq, but however it is still a dependency and
# we could build from the opam-installed setup.
# "coq" { >= "8.20.0" & < "8.21" }
# This is a dependency of Coq itself.
"zarith" { >= "1.14" }
# (plus stubs for building with jsoo)
"zarith_stubs_js" { >= "v0.16.0" }
]
build: [ "dune" "build" "-p" name "-j" jobs ]