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: ["Thomas Leonard <talex5@gmail.com>"] 9authors: ["Thomas Leonard <talex5@gmail.com>"] 10license: "Apache-2.0" 11homepage: "https://github.com/ocurrent/ocurrent" 12doc: "https://ocurrent.github.io/ocurrent/" 13bug-reports: "https://github.com/ocurrent/ocurrent/issues" 14depends: [ 15 "dune" {>= "3.3"} 16 "current" {= version} 17 "ocaml" {>= "4.08.0"} 18 "astring" {>= "0.8.5"} 19 "bos" {>= "0.2.0"} 20 "conf-git" 21 "cstruct" {>= "6.0.0"} 22 "fmt" {>= "0.8.9"} 23 "fpath" {>= "0.7.3"} 24 "irmin-watcher" 25 "logs" {>= "0.7.0"} 26 "lwt" {>= "5.6.1"} 27 "mirage-crypto" {>= "0.8.0" & < "1.0.0"} 28 "ppx_deriving" 29 "ppx_deriving_yojson" {>= "3.5.1"} 30 "result" {>= "1.5"} 31 "yojson" 32 "mdx" {with-test} 33 "alcotest" {with-test & >= "1.2.0"} 34 "alcotest-lwt" {with-test & >= "1.2.0"} 35 "odoc" {with-doc} 36] 37build: [ 38 ["dune" "subst"] {dev} 39 [ 40 "dune" 41 "build" 42 "-p" 43 name 44 "-j" 45 jobs 46 "@install" 47 "@runtest" {with-test} 48 "@doc" {with-doc} 49 ] 50] 51dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 52url { 53 src: 54 "https://github.com/ocurrent/ocurrent/releases/download/0.6.4/current-0.6.4.tbz" 55 checksum: [ 56 "sha256=e6cafa330166719e3f8bf30a4ffeec79b0f290e3dcd420c4a53d6a55912f961d" 57 "sha512=42d703a524ab61e3fd623ab4b1681bbe59c1d4426bebadb1bb50c3e6fcbb59d1aecb8041f2b6d09a9cb5eb5b6f79ec7b07eb4254ec39de30d406c20d4da7d664" 58 ] 59} 60x-commit-hash: "53fd3263d04407df6b7a627abe85667d011c0060"