-
Notifications
You must be signed in to change notification settings - Fork 10
/
devkit.opam
42 lines (42 loc) · 1.02 KB
/
devkit.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
opam-version: "2.0"
maintainer: "[email protected]"
authors: "Ahrefs <[email protected]>"
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
homepage: "https://github.com/ahrefs/devkit"
dev-repo: "git+https://github.com/ahrefs/devkit.git"
bug-reports: "https://github.com/ahrefs/devkit/issues"
synopsis: "Development kit - general purpose library"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs "@install" "@runtest"{with-test} "@doc"{with-doc}]
]
depends: [
"ocaml" {>= "4.05.0"}
"dune" {>= "2.0"}
("extlib" {>= "1.7.1"} | "extlib-compat" {>= "1.7.1"})
"ounit2"
"camlzip"
"libevent" {>= "0.8.0"}
"ocurl" {>= "0.7.2"}
"pcre" {>= "7.4.6"}
"trace" {>= "0.4"}
"extunix" {>= "0.1.4"}
"lwt" {>= "5.7.0"}
"lwt_ppx"
"base-bytes"
"base-unix"
"base-threads"
"stdlib-shims"
"yojson" {>= "1.6.0"}
"odoc" {with-doc}
]
depopts: [
"gperftools"
"jemalloc"
"opentelemetry"
]
conflicts: [
"jemalloc" {< "0.2"}
"opentelemetry" {< "0.6"}
]
available: arch != "arm32" & arch != "x86_32"