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} 14] 15 16depends: [ 17 "ocaml" {>= "4.01.0"} 18 "dune" {>= "1.8.0"} 19 "irmin" {>= "2.1.0" & < "2.2.0"} 20 "irmin-mem" {>= "2.0.0" & < "2.2.0"} 21 "irmin-git" {>= "2.0.0" & < "2.2.0"} 22 "irmin-http" {>= "2.0.0" & < "2.2.0"} 23 "irmin-fs" {>= "2.0.0" & < "2.2.0"} 24 "irmin-pack" {>= "2.0.0" & < "2.2.0"} 25 "irmin-graphql" {< "2.2.0"} 26 "git-unix" {>= "1.11.4" & < "3.0.0"} 27 "digestif" {>= "0.6.1"} 28 "irmin-watcher" {>= "0.2.0"} 29 "yaml" {>= "0.1.0"} 30# "irmin-test" {with-test & >= "2.0.0" & < "2.2.0"} 31] 32 33synopsis: "Unix backends for Irmin" 34description: """ 35`Irmin_unix` defines Unix backends (including Git and HTTP) for Irmin, as well 36as a very simple CLI tool (called `irmin`) to manipulate and inspect Irmin 37stores. 38""" 39url { 40 src: 41 "https://github.com/mirage/irmin/releases/download/2.1.0/irmin-2.1.0.tbz" 42 checksum: [ 43 "sha256=af3837ddeaaabdde6c77cc46b87e8edbdef3539b1a0a8e329a0bd6b6fec928ca" 44 "sha512=5bd2be34d61acf42a6c4e29f7b87fc15223ffa46546d6fb411f7519824ca8fd51f0db001787298f31c702998e73145c314b30e3e994154d0b3f63efe5f038976" 45 ] 46} 47flags: deprecated