this repo has no description
1opam-version: "2.0" 2maintainer: "anil@recoil.org" 3authors: ["Anil Madhavapeddy" "Thomas Gazagnaire"] 4homepage: "https://github.com/mirage/orm" 5bug-reports: "https://github.com/mirage/orm/issues" 6dev-repo: "git+https://github.com/mirage/orm.git" 7tags: "org:mirage" 8 9build: [ 10 [make] 11 [make "test"] {with-test & ocaml:version < "4.06"} 12] 13install: [make "install"] 14remove: ["ocamlfind" "remove" "orm"] 15 16depends: [ 17 "ocaml" 18 "ocamlfind" {build} 19 "ocamlbuild" {build} 20 "sqlite3" {< "5.0.0"} 21 "dyntype" {>= "0.9.0"} 22 "ounit" {with-test} 23 "num" 24] 25synopsis: "The ORM library provides a storage backend to persist ML values." 26description: """ 27This backend is integrated seamlessly with OCaml and currently uses 28SQLite (although other backends are easily possible). The user does 29not have to worry about writing any SQL queries manually.""" 30flags: light-uninstall 31url { 32 src: "https://github.com/mirage/orm/tarball/orm-0.7.1" 33 checksum: [ 34 "sha256=c6c01ec38cde5c9c2e8eb85d51027c5c59c52b11a587265081e98885a6285396" 35 "md5=15cd87fb3ade1521f0ff8ed843f97f17" 36 ] 37}