-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoq-debr-lvl.opam
36 lines (36 loc) · 1.23 KB
/
coq-debr-lvl.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "1.0.2"
synopsis:
"Collection of interfaces and implementations for a modular using of De Bruijn level"
description: """
Formalization of a language often implies variables or equivalent. A specific representation of them is required in order
to avoid capture issues. Consequently, we define here a collection of interfaces and implementations for using De Bruijn level.
In addition to the definition of a level and its minimal set of functions/properties, we propose a modular way to define a
'leveled' elements and provide numerous predefined data types and data structures such as option, pair, list, map, etc."""
maintainer: ["Ischard Jordan"]
authors: ["Ischard Jordan"]
license: "GPL-3.0-or-later"
homepage: "https://github.com/JordanIschard/DeBrLevel"
bug-reports: "https://github.com/JordanIschard/DeBrLevel/issues"
depends: [
"dune" {>= "3.12"}
"coq" {= "8.18.0"}
"coq-mmaps" {>= "1.1"}
"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/JordanIschard/DeBrLevel.git"