forked from mirage/irmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
irmin-unix.opam
38 lines (35 loc) · 1.1 KB
/
irmin-unix.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
opam-version: "2.0"
maintainer: "[email protected]"
authors: ["Thomas Gazagnaire" "Thomas Leonard"]
license: "ISC"
homepage: "https://github.com/mirage/irmin"
bug-reports: "https://github.com/mirage/irmin/issues"
dev-repo: "git+https://github.com/mirage/irmin.git"
doc: "https://mirage.github.io/irmin/"
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name] {with-test}
]
depends: [
"ocaml" {>= "4.01.0"}
"dune" {>= "1.8.0"}
"irmin" {>= "2.1.0"}
"irmin-mem" {>= "2.0.0"}
"irmin-git" {>= "2.0.0"}
"irmin-http" {>= "2.0.0"}
"irmin-fs" {>= "2.0.0"}
"irmin-pack" {>= "2.0.0"}
"irmin-graphql"
"git-unix" {>= "1.11.4"}
"digestif" {>= "0.6.1"}
"irmin-watcher" {>= "0.2.0"}
"yaml" {>= "0.1.0"}
"irmin-test" {with-test & >= "2.0.0"}
]
synopsis: "Unix backends for Irmin"
description: """
`Irmin_unix` defines Unix backends (including Git and HTTP) for Irmin, as well
as a very simple CLI tool (called `irmin`) to manipulate and inspect Irmin
stores.
"""