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
|
(lang dune 2.7)
(name postgresql)
(version 5.2.0)
(generate_opam_files true)
(source
(github mmottl/postgresql-ocaml))
(license "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception")
(homepage "https://mmottl.github.io/postgresql-ocaml")
(documentation "https://mmottl.github.io/postgresql-ocaml/api")
(maintainers "Markus Mottl <markus.mottl@gmail.com>")
(authors "Alain Frisch <alain.frisch@lexifi.com>"
"Markus Mottl <markus.mottl@gmail.com>"
"Petter Urkedal <paurkedal@gmail.com>")
(package
(name postgresql)
(synopsis "Bindings to the PostgreSQL library")
(description
"Postgresql offers library functions for accessing PostgreSQL databases.")
(depends
(ocaml
(>= 4.12))
dune-configurator
(conf-postgresql :build)))
|