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.2.tar.gz" 27 checksum: [ 28 "sha256=a789fb11d854219194651839ffe6ac23e307abcad2f8bd56573b1a7c72071133" 29 "md5=125714ae53adc484fcb15f610dc2495d" 30 ] 31}