this repo has no description
1opam-version: "2.0" 2synopsis: "Git plugin for OCurrent" 3description: """\ 4OCurrent provides an OCaml eDSL for writing CI/CD pipelines. 5 6This package provides primitives for interacting with Git. 7It can pull from remote repositories, or monitor local ones for changes.""" 8maintainer: "talex5@gmail.com" 9authors: "talex5@gmail.com" 10homepage: "https://github.com/ocurrent/ocurrent" 11doc: "https://ocurrent.github.io/ocurrent/" 12bug-reports: "https://github.com/ocurrent/ocurrent/issues" 13depends: [ 14 "current" {= version} 15 "ocaml" {>= "4.08.0"} 16 "conf-git" 17 "fmt" {>= "0.8.9"} 18 "ppx_deriving" 19 "lwt" 20 "irmin-watcher" 21 "ppx_deriving_yojson" {>= "3.5.1"} 22 "yojson" 23 "dune" {>= "2.0"} 24 "astring" {>= "0.8.5"} 25 "bos" {>= "0.2.0"} 26 "fpath" {>= "0.7.3"} 27 "logs" {>= "0.7.0"} 28 "result" {>= "1.5"} 29 "cstruct" {>= "5.0.0" & < "6.1.0"} 30 "mirage-crypto" {>= "0.8.0" & < "1.0.0"} 31] 32build: [ 33 ["dune" "build" "-p" name "-j" jobs] 34 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 35] 36dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 37x-commit-hash: "439d1b539335ee3aa974ff6c02e09885f40056b5" 38url { 39 src: 40 "https://github.com/ocurrent/ocurrent/releases/download/v0.5/current-v0.5.tbz" 41 checksum: [ 42 "sha256=f8c884318a46a568d965c7e8bac00dfe2339efac04ca6f0cbabef916d8b917ca" 43 "sha512=e0633239a7d02cdde6264db96c39ed7e3d1adf3a7f09bb25ad002d388f203b561e8c808daee90539bc0ee15c547d2ab4bef1789dcc9c22ed00b151bad0083f64" 44 ] 45} 46license: "Apache-2.0"