this repo has no description
1opam-version: "2.0" 2maintainer: "anil@recoil.org" 3tags: ["org:mirage"] 4build: make 5remove: [["ocamlfind" "remove" "orm"]] 6depends: [ 7 "ocaml" 8 "ocamlfind" 9 "sqlite3" {< "5.0.0"} 10 "dyntype" {>= "0.9.0"} 11 "num" 12] 13install: [make "install"] 14synopsis: "The ORM library provides a storage backend to persist ML values." 15description: """ 16This backend is integrated seamlessly with OCaml and currently uses 17SQLite (although other backends are easily possible). The user does 18not have to worry about writing any SQL queries manually.""" 19flags: light-uninstall 20url { 21 src: "https://github.com/mirage/orm/tarball/orm-0.7.0" 22 checksum: [ 23 "sha256=a0dc0c0ea3cabc4f9021b66af80c763172096c91f7e5cb78b8c1ac7adee8c333" 24 "md5=effe34f86035a515a79a75e34d1a8131" 25 ] 26}