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 ["libpq-dev"] {os-family = "debian"} 29 ["database/postgresql96-client"] {os = "freebsd"} 30 ["database/postgresql96-client"] {os = "openbsd"} 31 ["postgresql-devel"] {os-distribution = "centos"} 32 ["postgresql-devel"] {os-distribution = "rhel"} 33 ["postgresql-devel"] {os-distribution = "fedora"} 34 ["postgresql-dev"] {os-distribution = "alpine"} 35 ["postgresql"] {os-family = "suse" | os-family = "opensuse"} 36 ["postgresql"] {os = "macos" & os-distribution = "homebrew"} 37 ["postgresql96"] {os = "macos" & os-distribution = "macports"} 38] 39synopsis: "Bindings to the PostgreSQL library" 40description: 41 "Postgresql offers library functions for accessing PostgreSQL databases." 42url { 43 src: 44 "https://github.com/mmottl/postgresql-ocaml/releases/download/4.4.0/postgresql-4.4.0.tbz" 45 checksum: [ 46 "sha256=fef55e50fbabca496f35af2c3145972b7df761109c8c6e89a56c2c80ac9be9c0" 47 "md5=712a96fe304e2bee2a0faeb54ede6653" 48 ] 49}