this repo has no description
1opam-version: "2.0" 2maintainer: "dave@recoil.org" 3authors: [ "David Scott" "Thomas Gazagnaire"] 4license: "ISC" 5homepage: "https://github.com/mirage/ocaml-named-pipe" 6dev-repo: "git+https://github.com/mirage/ocaml-named-pipe.git" 7bug-reports: "https://github.com/mirage/ocaml-named-pipe/issues" 8doc: "https://mirage.github.io/ocaml-named-pipe/" 9 10build: [ 11 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%"] 12 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "true"] 13 {with-test} 14 ["ocaml" "pkg/pkg.ml" "test"] {with-test} 15] 16depends: [ 17 "ocaml" {>= "3.12.1"} 18 "ocamlfind" {build} 19 "ocamlbuild" {build & >= "0.9.3"} 20 "topkg" {build & >= "0.8.1"} 21 "ocb-stubblr" {build & >= "0.1.0"} 22 "base-bytes" 23 "lwt" {>= "2.4.7" & < "5.0.0"} 24 "base-unix" 25 "cmdliner" 26 "alcotest" {with-test & >= "0.4.0"} 27] 28synopsis: "Bindings for named pipes" 29description: """ 30Named pipes are used on Windows for local (and remote) IPC. Where a Unix 31system would use a Unix domain socket, a Windows system will probably used 32a named pipe.""" 33url { 34 src: 35 "https://github.com/mirage/ocaml-named-pipe/releases/download/0.4.0/named-pipe-0.4.0.tbz" 36 checksum: [ 37 "sha256=c602f4d5fdc9f5ff8ec83a0d43608ad76f49f50c4b4bf10774435e7ed8688374" 38 "md5=ec3a7aaec3cc0efd6560dd1668da6def" 39 ] 40} 41flags: deprecated