this repo has no description
1opam-version: "2.0" 2maintainer: "Tarides <contact@tarides.com>" 3authors: ["Tarides"] 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 "-j" jobs] {with-test & os != "macos"} 14] 15 16available: arch != "arm32" & arch != "x86_32" 17 18depends: [ 19 "ocaml" {>= "4.01.0"} 20 "dune" {>= "2.9.0"} 21 "irmin" {= version} 22 "irmin-git" {= version} 23 "irmin-fs" {= version} 24 "irmin-pack" {= version} 25 "irmin-graphql" {= version} 26 "irmin-tezos" {= version} 27 "irmin-server" {= version} 28 "git-unix" {>= "3.7.0"} 29 "digestif" {>= "0.9.0"} 30 "irmin-watcher" {>= "0.2.0"} 31 "yaml" {>= "3.0.0"} 32 "astring" 33 "astring" 34 "cohttp" 35 "cohttp-lwt" 36 "cohttp-lwt-unix" 37 "conduit" 38 "conduit-lwt" 39 "conduit-lwt-unix" {>= "6.0.0"} 40 "websocket-lwt-unix" 41 "ppx_blob" {>= "0.7.2"} 42 "logs" 43 "uri" 44 "cmdliner" 45 "cohttp-lwt-unix" 46 "fmt" 47 "git" {>= "3.7.0"} 48 "happy-eyeballs-lwt" 49 "lwt" {>= "5.3.0"} 50 "irmin-test" {with-test & = version} 51 "alcotest" {with-test} 52 "mdx" {>= "2.0.0" & with-test} 53] 54 55conflicts: [ 56 "mirage-ptime" 57 "mirage-mtime" 58] 59 60synopsis: "CLI for Irmin" 61description: """ 62A simple CLI tool (called `irmin`) to manipulate and inspect Irmin stores. 63""" 64url { 65 src: 66 "https://github.com/mirage/irmin/releases/download/3.10.0/irmin-3.10.0.tbz" 67 checksum: [ 68 "sha256=92a9de7a0a2a35c2feba0c35a806b1f0df24c1c0d15164eebf3f919296d26715" 69 "sha512=0203ec5117a851ad5afeb2f9091659b4e142e231b6b945caab93f4d7beb23397c8ac43f7056e91d18f4bff0be1062f6ae966d221f877c229328c0cbbf29fd9f0" 70 ] 71} 72x-commit-hash: "7fa4b043a97944635cc100ae2e7dd85f73d8a4ce" 73x-maintenance-intent: [ "(latest)" ]