this repo has no description
1opam-version: "2.0"
2maintainer: "Petter A. Urkedal <paurkedal@gmail.com>"
3homepage: "https://github.com/paurkedal/ocaml-caqti/"
4bug-reports: "https://github.com/paurkedal/ocaml-caqti/issues"
5dev-repo: "git+https://github.com/paurkedal/ocaml-caqti.git"
6license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception"
7
8build: [
9 ["jbuilder" "build" "-p" name "-j" jobs]
10 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
11]
12depends: [
13 "ocaml" {>= "4.04.0"}
14 "caqti" {= "0.11.0"}
15 "jbuilder" {>= "1.0+beta19"}
16 "ocamlfind"
17]
18synopsis: "Dynamic linking of Caqti drivers using findlib.dynload."
19description: """
20This library registers a dynamic linker which will be called when
21encoutering an unhandled database URI. It tries to load a findlib package
22named "caqti-driver-<scheme>" where "<scheme>" is the scheme of the URI,
23which is expected register a driver for the scheme.
24
25This is a separate package to avoid the dependency on the findlib.dynload
26for architectures, like MirageOS, where dynamic linking may be unavailable.
27The alternative is to link drivers directly into the application."""
28authors: "Petter A. Urkedal <paurkedal@gmail.com>"
29url {
30 src:
31 "https://github.com/paurkedal/ocaml-caqti/releases/download/v0.11.0/caqti-0.11.0.tbz"
32 checksum: [
33 "sha256=37482ccb5866d4d195f206a88cf764b7f3fd483e159c1b643e767e5cf51335ff"
34 "md5=f749fd41e5c20d20a315f257f6ec7128"
35 ]
36}