-
Notifications
You must be signed in to change notification settings - Fork 152
/
datakit.opam
59 lines (58 loc) · 1.76 KB
/
datakit.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
opam-version: "2.0"
maintainer: "[email protected]"
authors: [
"Thomas Leonard" "Magnus Skjegstad" "David Scott" "Thomas Gazagnaire"
]
license: "Apache"
homepage: "https://github.com/moby/datakit"
doc: "https://docker.github.io/datakit/"
bug-reports: "https://github.com/moby/datakit/issues"
depends: [
"ocaml" {>= "4.03.0"}
"dune" {build}
"cmdliner"
"rresult"
"astring"
"fmt"
"asetmap"
"git" {>= "1.11.5"}
"uri" {>="2.0.0"}
"irmin" {>="1.4.0"}
"irmin-mem" {>= "1.2.0"}
"irmin-git" {>= "1.2.0"}
"cstruct" {>= "2.2"}
"result"
"lwt" {>= "3.0.0"}
"conduit-lwt-unix" {>= "1.0.0"}
"mirage-flow"
"named-pipe" {>= "0.4.0"}
"hvsock" {>= "0.8.1"}
"logs" {>= "0.5.0"}
"win-eventlog"
"asl" {>= "0.10"}
"mtime" {>= "1.0.0"}
"irmin-watcher" {>= "0.2.0"}
"prometheus-app"
"protocol-9p-unix" {>= "0.11.0"}
"datakit-server-9p" {>= "0.12.0"}
"datakit-client-9p" {with-test & >= "0.12.0"}
"alcotest" {with-test & >= "0.8.0"}
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "tests/datakit"] {with-test}
["dune" "runtest" "tests/datakit-9p"] {with-test}
]
dev-repo: "git+https://github.com/moby/datakit.git"
synopsis: "Orchestrate applications using a Git-like dataflow"
description: """
DataKit is a tool to orchestrate applications using a Git-like dataflow. It
revisits the UNIX pipeline concept, with a modern twist: streams of
tree-structured data instead of raw text. DataKit allows you to define complex
build pipelines over version-controlled data.
DataKit is currently used as the coordination
layer for [HyperKit](http://github.com/docker/hyperkit), the
hypervisor component of
[Docker for Mac and Windows](https://blog.docker.com/2016/03/docker-for-mac-windows-beta/), and
for the DataKitCI continuous integration system.
"""