this repo has no description
1opam-version: "2.0" 2synopsis: "SSH plugin for OCurrent" 3description: """\ 4OCurrent provides an OCaml eDSL for writing CI/CD pipelines. 5 6This package provides a plugin for running ssh commands.""" 7maintainer: "Mark Elvers <mark.elvers@tunbury.org>" 8authors: "Mark Elvers <mark.elvers@tunbury.org>" 9license: "Apache-2.0" 10homepage: "https://github.com/ocurrent/ocurrent" 11doc: "https://ocurrent.github.io/ocurrent/" 12bug-reports: "https://github.com/ocurrent/ocurrent/issues" 13depends: [ 14 "dune" {>= "3.3"} 15 "current" {= version} 16 "ocaml" {>= "4.12.0"} 17 "yojson" 18 "odoc" {with-doc} 19] 20build: [ 21 ["dune" "subst"] {dev} 22 [ 23 "dune" 24 "build" 25 "-p" 26 name 27 "-j" 28 jobs 29 "@install" 30 "@runtest" {with-test} 31 "@doc" {with-doc} 32 ] 33] 34dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 35url { 36 src: 37 "https://github.com/ocurrent/ocurrent/releases/download/v0.7.0/ocurrent-0.7.0.tbz" 38 checksum: [ 39 "md5=8377008ef5ad00fdf74681c6d07e5d23" 40 "sha512=2948497aef5dde1228adbd1c27f4d5dff59d66393774a69bf2c8078a47c85b82320a103450802ed62bc81cebd9e7354557adf2d471553040a983f53e4f43d5ef" 41 ] 42} 43x-maintenance-intent: ["(latest)"]