this repo has no description
1opam-version: "2.0" 2maintainer: "thomas@gazagnaire.org" 3authors: ["Thomas Gazagnaire" "Thomas Leonard"] 4license: "ISC" 5homepage: "https://github.com/mirage/irmin" 6bug-reports: "https://github.com/mirage/irmin/issues" 7dev-repo: "git+https://github.com/mirage/irmin.git" 8doc: "https://mirage.github.io/irmin/" 9 10build: [ 11 ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs] 13 ["dune" "runtest" "-p" name] {with-test & arch != "arm32" & arch != "x86_32"} 14] 15 16depends: [ 17 "ocaml" {>= "4.07.0"} 18 "dune" {>= "1.8.0"} 19 "fmt" {>= "0.8.5"} 20 "uri" {>= "1.3.12"} 21 "jsonm" {>= "1.0.0"} 22 "lwt" {>= "2.4.7"} 23 "base64" {>= "3.0.0"} 24 "digestif" 25 "ocamlgraph" 26 "logs" {>= "0.5.0"} 27 "astring" 28 "hex" {with-test} 29 "alcotest" {with-test} 30 "ppx_irmin" {with-test} 31] 32synopsis: """ 33Irmin, a distributed database that follows the same design principles as Git 34""" 35description: """ 36Irmin is a library for persistent stores with built-in snapshot, 37branching and reverting mechanisms. It is designed to use a large 38variety of backends. Irmin is written in pure OCaml and does not 39depend on external C stubs; it aims to run everywhere, from Linux, 40to browsers and Xen unikernels. 41""" 42url { 43 src: 44 "https://github.com/mirage/irmin/releases/download/2.2.0/irmin-2.2.0.tbz" 45 checksum: [ 46 "sha256=a44e018495336e0f632433fcae7b4e84699938a7110212da9e3818b35048fc3f" 47 "sha512=8dd9e9f09877a5541ee1be3387e041f63e6b522f9efac388d72199f965b0692f2502e93c1ddc2a5f959289fa2f75f06849582cffbcc201de19e9bd50413f6115" 48 ] 49}