this repo has no description
1opam-version: "2.0"
2synopsis: "OCurrent Docker plugin"
3description: """\
4OCurrent provides an OCaml eDSL for writing CI/CD pipelines.
5
6This package provides a plugin for interacting with Docker.
7It can pull, build, run and push images, and can coordinate
8multiple Docker Engine instances."""
9maintainer: "Mark Elvers <mark.elvers@tunbury.org>"
10authors: [
11 "Thomas Leonard <talex5@gmail.com>"
12 "Antonin Décimo <antonin@tarides.com>"
13 "Tim McGilchrist <timmcgil@gmail.com>"
14 "Craig Ferguson <me@craigfe.io>"
15 "Etienne MARAIS <etienne@maiste.fr>"
16 "Anil Madhavapeddy <anil@recoil.org>"
17 "David Allsopp <david.allsopp@metastack.com>"
18 "Ewan Mellor <ewan@tarides.com>"
19 "Kate <kit.ty.kate@disroot.org>"
20 "Mark Elvers <mark.elvers@tunbury.org>"
21 "Puneeth Chaganti <punchagan@muse-amuse.in>"
22 "Lucas Pluvinage <lucas@tarides.com>"
23 "Navin Keswani <navin@novemberkilo.com>"
24 "Thomas Gazagnaire <thomas@gazagnaire.org>"
25 "Patrick Ferris <patrick@sirref.org>"
26 "Arthur Wendling <art.wendling@gmail.com>"
27 "Anurag Soni <anurag@sonianurag.com>"
28 "Ambre Austen Suhamy <ambre@tarides.com>"
29 "Ben Andrew <benmandrew@gmail.com>"
30 "Gargi Sharma <gs051095@gmail.com>"
31 "Jonathan Coates <git@squiddev.cc>"
32 "Jules Aguillon <juloo.dsi@gmail.com>"
33 "Magnus Skjegstad <magnus@skjegstad.com>"
34 "Shon Feder <shon.feder@gmail.com>"
35 "smolck <46855713+smolck@users.noreply.github.com>"
36 "tatchi <corentin.leruth@gmail.com>"
37]
38license: "Apache-2.0"
39homepage: "https://github.com/ocurrent/ocurrent"
40doc: "https://ocurrent.github.io/ocurrent/"
41bug-reports: "https://github.com/ocurrent/ocurrent/issues"
42depends: [
43 "dune" {>= "3.3"}
44 "current" {= version}
45 "current_git" {= version}
46 "ocaml" {>= "4.12.0"}
47 "astring" {>= "0.8.5"}
48 "bos" {>= "0.2.0"}
49 "duration" {>= "0.1.3"}
50 "fmt" {>= "0.8.9"}
51 "fpath" {>= "0.7.3"}
52 "logs" {>= "0.7.0"}
53 "lwt" {>= "5.7"}
54 "ppx_deriving"
55 "ppx_deriving_yojson" {>= "3.5.1"}
56 "result" {>= "1.5"}
57 "yojson"
58 "odoc" {with-doc}
59]
60build: [
61 ["dune" "subst"] {dev}
62 [
63 "dune"
64 "build"
65 "-p"
66 name
67 "-j"
68 jobs
69 "@install"
70 "@runtest" {with-test}
71 "@doc" {with-doc}
72 ]
73]
74dev-repo: "git+https://github.com/ocurrent/ocurrent.git"
75url {
76 src:
77 "https://github.com/ocurrent/ocurrent/releases/download/v0.7.1/ocurrent-0.7.1.tbz"
78 checksum: [
79 "md5=8a60e0b0860f6353c0e001d8d74a88ca"
80 "sha512=fddde66e3390afa4d46e2d121f2b510358ef853b81b691dbf482b0cfc8f56b21f5a0c43618e1818e6378b8897eca5811af7a995b42e1cb955647727cad877e05"
81 ]
82}
83x-maintenance-intent: ["(latest)"]