this repo has no description
1opam-version: "2.0"
2maintainer: "dave@recoil.org"
3authors: [ "David Scott" ]
4license: "ISC"
5homepage: "https://github.com/djs55/ocaml-named-pipe"
6dev-repo: "git+https://github.com/djs55/ocaml-named-pipe.git"
7bug-reports: "https://github.com/djs55/ocaml-named-pipe/issues"
8
9build: [
10 ["ocaml" "setup.ml" "-configure" "--%{alcotest:enable}%-tests"]
11 [make]
12 [make "test"] {with-test}
13]
14install: [make "install"]
15
16depends: [
17 "ocaml" {>= "3.12.1"}
18 "base-bytes"
19 "lwt" {>= "2.4.7" & < "5.0.0"}
20 "base-unix"
21 "cmdliner"
22 "ocamlfind" {build}
23 "ocamlbuild" {build}
24 "alcotest" {with-test & >= "0.4.0"}
25]
26synopsis: "Named pipe bindings"
27description: """
28Named pipe bindings for Windows systems. Note this code will compile on
29non-Windows platforms but will raise a dynamic `Not_available` error
30if you try to use the functions."""
31flags: deprecated
32url {
33 src: "https://github.com/djs55/ocaml-named-pipe/archive/v0.3.tar.gz"
34 checksum: [
35 "sha256=c096db1305e734322382510f5d1bc24c5ace2ca02e8b507c8b2eda7678658cf5"
36 "md5=33a003c2041225f5de6fdde94cb84cbd"
37 ]
38}