this repo has no description
1opam-version: "2.0" 2maintainer: "Markus Mottl <markus.mottl@gmail.com>" 3authors: [ 4 "Markus Mottl <markus.mottl@gmail.com>" 5 "Christian Szegedy <csdontspam@metamatix.com>" 6] 7license: "Expat" 8homepage: "http://mmottl.github.io/sqlite3-ocaml" 9doc: "https://mmottl.github.io/sqlite3-ocaml/api" 10dev-repo: "git+https://github.com/mmottl/sqlite3-ocaml.git" 11bug-reports: "https://github.com/mmottl/sqlite3-ocaml/issues" 12tags: [ "clib:sqlite3" "clib:pthread" ] 13 14build: [ 15 ["jbuilder" "subst" "-p" name] {dev} 16 ["jbuilder" "build" "-p" name "-j" jobs] 17] 18 19depends: [ 20 "ocaml" {>= "4.05"} 21 "base" {build} 22 "conf-sqlite3" {build} 23 "stdio" {build} 24 "configurator" {build} 25 "jbuilder" {>= "1.0+beta10"} 26] 27synopsis: "SQLite3 bindings for OCaml" 28description: """ 29sqlite3-ocaml is an OCaml library with bindings to the SQLite3 client API. 30Sqlite3 is a self-contained, serverless, zero-configuration, transactional SQL 31database engine with outstanding performance for many use cases.""" 32url { 33 src: 34 "https://github.com/mmottl/sqlite3-ocaml/releases/download/4.4.0/sqlite3-4.4.0.tbz" 35 checksum: [ 36 "sha256=04487c8e8e378f7128ccc7be94ab1e7479750f6976baf237d39a7afac32d753b" 37 "md5=73b5e4a0e3a45e0a8690f216d43dceba" 38 ] 39}