-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathbatteries.opam
44 lines (44 loc) · 1.21 KB
/
batteries.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
43
44
opam-version: "2.0"
synopsis: "A community-maintained standard library extension"
maintainer: [
"Cedric Cellier <[email protected]>"
"Francois Berenger <[email protected]>"
"Gabriel Scherer <[email protected]>"
"Thibault Suzanne <[email protected]>"
"Simmo Saan <[email protected]>"
]
authors: ["OCaml batteries-included team"]
license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
homepage: "https://github.com/ocaml-batteries-team/batteries-included"
doc: "http://ocaml-batteries-team.github.io/batteries-included/hdoc2/"
bug-reports:
"https://github.com/ocaml-batteries-team/batteries-included/issues"
depends: [
"dune" {>= "2.7"}
"ocaml" {>= "4.05" & < "5.4"}
"camlp-streams"
"ocamlfind" {>= "1.5.3"}
"qtest" {with-test & >= "2.5"}
"qcheck" {with-test & >= "0.9" & < "0.14"}
"benchmark" {with-test & >= "1.6"}
"num"
"odoc" {with-doc}
]
conflicts: ["base-effects" "ocaml-option-no-flat-float-array"]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs {!with-test}
"1" {with-test}
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo:
"git+https://github.com/ocaml-batteries-team/batteries-included.git"