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 ["dune" "subst"] {dev} 16 ["dune" "build" "-p" name "-j" jobs] 17] 18 19depends: [ 20 "ocaml" {>= "4.05"} 21 "dune" {>= "1.4.0"} 22 "dune-configurator" 23 "base" {build & < "v0.17"} 24 "stdio" {build} 25 "base-bytes" 26] 27 28depexts: [ 29 ["libpq-dev"] {os-family = "debian"} 30 ["database/postgresql96-client"] {os-distribution = "freebsd"} 31 ["database/postgresql96-client"] {os-distribution = "openbsd"} 32 ["postgresql-devel"] {os-distribution = "centos"} 33 ["postgresql-devel"] {os-distribution = "rhel"} 34 ["postgresql-devel"] {os-distribution = "fedora"} 35 ["postgresql-devel"] {os-family = "suse" | os-family = "opensuse"} 36 ["postgresql-dev"] {os-distribution = "alpine"} 37 ["postgresql"] {os = "macos" & os-distribution = "homebrew"} 38 ["postgresql96"] {os = "macos" & os-distribution = "macports"} 39] 40synopsis: "Bindings to the PostgreSQL library" 41 42description: """ 43Postgresql offers library functions for accessing PostgreSQL databases.""" 44url { 45 src: 46 "https://github.com/mmottl/postgresql-ocaml/releases/download/4.4.2/postgresql-4.4.2.tbz" 47 checksum: [ 48 "sha256=13b7efd9f9415562c8c93940eff33aa7bb7fc4155f110b571e816c3dc2a23292" 49 "md5=a33ddf73b99ea63a916134e5f0debbb4" 50 ] 51}