-
Notifications
You must be signed in to change notification settings - Fork 6
/
bindlib.opam
40 lines (40 loc) · 1.06 KB
/
bindlib.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "OCaml Bindlib library for bound variables"
description: """
The Bindlib library provides support for free and bound variables in the
OCaml language. The main application is the representation of types with
a binding structure (e.g., abstract syntax trees)."""
maintainer: [
"Rodolphe Lepigre <[email protected]>"
"Christophe Raffalli <[email protected]"
]
authors: [
"Rodolphe Lepigre <[email protected]>"
"Christophe Raffalli <[email protected]"
]
license: "LGPL-3.0"
homepage: "https://github.com/rlepigre/ocaml-bindlib"
bug-reports: "https://github.com/rlepigre/ocaml-bindlib/issues"
depends: [
"ocaml" {>= "4.07.0"}
"dune" {>= "2.7" & build}
"timed" {>= "1.0" & with-test}
"pacomb" {>= "1.1" & with-test}
"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/rlepigre/ocaml-bindlib.git"