this repo has no description
1opam-version: "2.0" 2maintainer: "Markus Mottl <markus.mottl@gmail.com>" 3authors: [ 4 "Alain Frisch <alain.frisch@lexifi.com>" 5 "Markus Mottl <markus.mottl@gmail.com>" 6 "Petter Urkedal <paurkedal@gmail.com>" 7] 8license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 9homepage: "https://mmottl.github.io/postgresql-ocaml" 10doc: "https://mmottl.github.io/postgresql-ocaml/api" 11dev-repo: "git+https://github.com/mmottl/postgresql-ocaml.git" 12bug-reports: "https://github.com/mmottl/postgresql-ocaml/issues" 13 14build: [ 15 ["jbuilder" "subst" "-p" name] {dev} 16 ["jbuilder" "build" "-p" name "-j" jobs] 17] 18 19depends: [ 20 "ocaml" {>= "4.04"} 21 "base-bytes" 22 "base" {build & < "v0.17"} 23 "stdio" {build} 24 "configurator" {build} 25 "jbuilder" {>= "1.0+beta10"} 26] 27depexts: [ 28 ["postgresql-libs"] {os-distribution = "arch"} 29 ["libpq-dev"] {os-family = "debian"} 30 ["database/postgresql96-client"] {os = "freebsd"} 31 ["database/postgresql96-client"] {os = "openbsd"} 32 ["postgresql-devel"] {os-distribution = "centos"} 33 ["postgresql-devel"] {os-distribution = "rhel"} 34 ["postgresql-devel"] {os-distribution = "fedora"} 35 ["postgresql-dev"] {os-distribution = "alpine"} 36 ["postgresql"] {os-family = "suse" | os-family = "opensuse"} 37 ["postgresql"] {os = "macos" & os-distribution = "homebrew"} 38 ["postgresql96"] {os = "macos" & os-distribution = "macports"} 39] 40synopsis: "Bindings to the PostgreSQL library" 41description: 42 "Postgresql offers library functions for accessing PostgreSQL databases." 43url { 44 src: 45 "https://github.com/mmottl/postgresql-ocaml/releases/download/4.2.0/postgresql-4.2.0.tbz" 46 checksum: [ 47 "sha256=6bc19ab9093463d960e7a78766f76336f8a57d2a8fa23b8393db26a652b4ed61" 48 "md5=c7705969a5930aced2a12df0cd7b4916" 49 ] 50}