-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathrocq-equations.opam
42 lines (42 loc) · 1.3 KB
/
rocq-equations.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "A function definition package for Rocq"
description:
"Equations is a function definition plugin for Rocq, that allows the definition of functions by dependent pattern-matching and well-founded, mutual or nested structural recursion and compiles them into core terms. It automatically derives the clauses equations, the graph of the function and its associated elimination principle."
maintainer: ["Matthieu Sozeau <[email protected]>"]
authors: [
"Matthieu Sozeau <[email protected]>"
"Cyprien Mangin <[email protected]>"
]
license: "LGPL-2.1-only"
tags: [
"keyword:dependent pattern-matching"
"keyword:functional elimination"
"category:Miscellaneous/Coq Extensions"
"logpath:Equations"
]
homepage: "https://mattam82.github.io/Coq-Equations"
bug-reports: "https://github.com/mattam82/Coq-Equations/issues"
depends: [
"dune" {>= "3.13"}
"ocaml" {>= "4.10.0"}
"rocq-prover" {>= "9.0~"}
"ppx_optcomp" {build}
"ocaml-lsp-server" {with-dev-setup}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/mattam82/Coq-Equations.git"