-
Notifications
You must be signed in to change notification settings - Fork 17
/
sqlexpr.opam
32 lines (31 loc) · 948 Bytes
/
sqlexpr.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
opam-version: "1.2"
maintainer: "[email protected]"
authors: ["Mauricio Fernandez <[email protected]>"]
license: "LGPL-2.1 with OCaml linking exception"
homepage: "http://github.com/mfp/ocaml-sqlexpr"
dev-repo: "https://github.com/mfp/ocaml-sqlexpr.git"
bug-reports: "https://github.com/mfp/ocaml-sqlexpr/issues"
available: ocaml-version >= "4.02.0"
build: [
[ "env" "ESTRING=%{estring:enable}%" "dune" "build" "-p" name "-j" jobs ]
]
depends: [
"dune" {build & >= "1.1.1"}
"csv"
"lwt" {>= "2.2.0"}
"lwt_ppx" {build}
("sqlite3" {>= "2.0.4"} | "sqlite3" {= "2.0.3"})
"base-unix"
"ppx_sqlexpr"
]
depopts: [ "estring" ]
messages: [
"For the PPX syntax extension, install package ppx_sqlexpr"
{!ppx_sqlexpr:installed}
"For the Camlp4 syntax extension, install package pa_sqlexpr"
{!pa_sqlexpr:installed}
]
post-messages: [
"The sqlexpr.ppx and sqlexpr.syntax package aliases have been dropped.
Switch to ppx_sqlexpr and pa_sqlexpr."
]