this repo has no description
1opam-version: "2.0" 2synopsis: "PPX extension for PGOCaml" 3description: """ 4PGOCaml provides an interface to PostgreSQL databases for OCaml applications. 5This PPX syntax extension enables one to directly embed SQL statements inside 6the OCaml code. The extension uses the 'describe' feature of PostgreSQL to 7obtain type information about the database. This allows PGOCaml to check at 8compile-time if the program is indeed consistent with the database structure. 9""" 10maintainer: "dario.teixeira@nleyten.com" 11authors: ["Richard W.M. Jones <rich@annexia.org>"] 12homepage: "https://github.com/darioteixeira/pgocaml" 13bug-reports: "https://github.com/darioteixeira/pgocaml/issues" 14dev-repo: "git+https://github.com/darioteixeira/pgocaml.git" 15license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception" 16build: [["dune" "build" "-p" name "-j" jobs]] 17depends: [ 18 "dune" {>= "1.10"} 19 "ocaml" {>= "4.07"} 20 "ocaml-migrate-parsetree" {< "2.0.0"} 21 "pgocaml" {= version} 22 "ppx_optcomp" 23 "ppx_sexp_conv" 24 "ppx_tools" 25 "ppx_tools_versioned" 26 "ppx_deriving" {>= "4.0"} 27 "rresult" 28 "sexplib" 29] 30url { 31 src: "https://github.com/darioteixeira/pgocaml/archive/4.0.tar.gz" 32 checksum: [ 33 "md5=592f4981041fcb7bbe76ccb9977d9e32" 34 "sha512=fe6d1e24ad471c4e4a0abe5f7718881c8bc4de4c7c2e76285ca4c77997a2e5cfd625fa159f35b5892dd88e5a4b5444b7aa98fd7683e0fd94aa1636be4b657b69" 35 ] 36}