this repo has no description
1opam-version: "2.0" 2synopsis: "Irmin backend using the web-browser's IndexedDB store" 3maintainer: "Thomas Leonard <talex5@gmail.com>" 4authors: "Thomas Leonard <talex5@gmail.com>" 5license: "ISC" 6homepage: "https://github.com/talex5/irmin-indexeddb" 7bug-reports: "https://github.com/talex5/irmin-indexeddb/issues" 8depends: [ 9 "ocaml" {>= "4.5.0"} 10 "dune" {>= "1.11"} 11 "base64" {>= "3.0.0"} 12 "irmin" {>= "2.0.0" & < "2.3.0"} 13 "irmin-git" {with-test} 14 "cstruct" {>= "1.7.0"} 15 "js_of_ocaml" {>= "3.0"} 16 "js_of_ocaml-lwt" 17 "js_of_ocaml-ppx" 18 "git" {< "3.0.0"} 19 "lwt" 20] 21build: [ 22 ["dune" "build" "-p" name "-j" jobs] 23 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 24 ["dune" "build" "-p" name "@doc"] {with-doc} 25] 26dev-repo: "git+https://github.com/talex5/irmin-indexeddb.git" 27doc: "https://talex5.github.io/irmin-indexeddb/" 28description: """ 29This is an Irmin backend that stores the data in the web-browser's IndexedDB store. 30For more information, see <http://roscidus.com/blog/blog/2015/06/22/cuekeeper-internals-irmin/> 31""" 32url { 33 src: 34 "https://github.com/talex5/irmin-indexeddb/releases/download/v2.0/irmin-indexeddb-v2.0.tbz" 35 checksum: [ 36 "sha256=9397a500f5a3f83270921d95f861af0da6174d68516ce3fade725b13428ba41d" 37 "sha512=34d24e9eb04cd025e9b83b33a55d0341553f536593a837638e1ff8b75053b9ca5144466b9604a03d1d8bc99f33c34f8ae600d926fbe0b31e74230f78c3337f8c" 38 ] 39}