forked from camlspotter/opam-repository-mingw
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7793 from samoht/opam-publish/named-pipe.0.4.0
named-pipe.0.4.0 - via opam-publish
- Loading branch information
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Bindings for named pipes | ||
|
||
Named pipes are used on Windows for local (and remote) IPC. Where a Unix | ||
system would use a Unix domain socket, a Windows system will probably used | ||
a named pipe. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
opam-version: "1.2" | ||
maintainer: "[email protected]" | ||
authors: [ "David Scott" "Thomas Gazagnaire"] | ||
license: "ISC" | ||
homepage: "https://github.com/mirage/ocaml-named-pipe" | ||
dev-repo: "https://github.com/mirage/ocaml-named-pipe.git" | ||
bug-reports: "https://github.com/mirage/ocaml-named-pipe/issues" | ||
doc: "https://mirage.github.io/ocaml-named-pipe/" | ||
|
||
build: ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%"] | ||
build-test:[ | ||
["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "true"] | ||
["ocaml" "pkg/pkg.ml" "test"] | ||
] | ||
|
||
depends: [ | ||
"ocamlfind" {build} | ||
"ocamlbuild" {build & >= "0.9.3"} | ||
"topkg" {build & >= "0.8.1"} | ||
"ocb-stubblr" {build & >= "0.1.0"} | ||
"base-bytes" | ||
"lwt" {>= "2.4.7"} | ||
"base-unix" | ||
"cmdliner" | ||
"alcotest" {test & >= "0.4.0"} | ||
] | ||
|
||
available: [ ocaml-version >= "3.12.1" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
archive: "https://github.com/mirage/ocaml-named-pipe/releases/download/0.4.0/named-pipe-0.4.0.tbz" | ||
checksum: "ec3a7aaec3cc0efd6560dd1668da6def" |