forked from realworldocaml/book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rwo.opam
56 lines (56 loc) · 1.14 KB
/
rwo.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
45
46
47
48
49
50
51
52
53
54
55
56
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Real World OCaml book sources"
description: """
Scripts and sources to compile the Real World OCaml
second edition book. See https://realworldocaml.org/"""
maintainer: ["[email protected]"]
authors: ["Anil Madhavapeddy" "Yaron Minsky"]
license: "ISC"
homepage: "https://github.com/realworldocaml/book"
bug-reports: "https://github.com/realworldocaml/book/issues"
depends: [
"dune" {>= "2.4"}
"ocaml" {>= "4.10.0" & < "4.11.0"}
"async"
"atdgen"
"base"
"cmdliner"
"cohttp-async"
"conf-ncurses"
"core"
"core_bench"
"ctypes"
"ctypes-foreign"
"fmt"
"lambdasoup"
"mdx"
"ocaml-compiler-libs"
"ocaml-print-intf"
"ppx_jane"
"re"
"sexp_pretty"
"textwrap"
"tls"
"yojson"
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/realworldocaml/book.git"
depexts: [
["tzdata"] {os-distribution = "ubuntu"}
["tzdata"] {os-distribution = "debian"}
["tzdata"] {os-distribution = "alpine"}
]