this repo has no description
1opam-version: "2.0" 2maintainer: "Zach Shipko <zachshipko@gmail.com>" 3authors: "Zach Shipko" 4homepage: "https://github.com/zshipko/ocaml-ezsqlite" 5bug-reports: "https://github.com/zshipko/ocaml-ezsqlite/issues" 6license: "ISC" 7doc: "https://github.com/zshipko/ocaml-ezsqlite" 8dev-repo: "git+https://github.com/zshipko/ocaml-ezsqlite.git" 9build: [ 10 ["ocaml" "./pkg/pkg.ml" "build" "--pinned" "%{pinned}%"] 11 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "true"] 12 {with-test} 13 ["ocaml" "pkg/pkg.ml" "test"] {with-test} 14] 15depends: [ 16 "ocaml" {>= "4.03.0"} 17 "ocamlfind" {build} 18 "ocamlbuild" {build} 19 "topkg" {build} 20 "hex" 21] 22synopsis: "Simplified SQLite3 bindings for OCaml" 23description: 24 "Ezsqlite provides custom SQLite3 bindings and a familiar API for interacting with SQL datatypes in OCaml. Additionally, SQLite3 is compiled into Ezsqlite with many extensions enabled. For more information see https://github.com/zshipko/ocaml-ezsqlite" 25url { 26 src: "https://github.com/zshipko/ocaml-ezsqlite/archive/0.3.tar.gz" 27 checksum: [ 28 "sha256=e90d7fb0e82a552b853803bf45208ddbe1dd2ce4a53882888273f936b41ad202" 29 "md5=cffc08cb6f1fe46dca694a2ae1bcce97" 30 ] 31}