this repo has no description
1opam-version: "2.0"
2maintainer: "Mindy Preston <meetup@yomimono.org>"
3authors: ["Mindy Preston <meetup@yomimono.org>"]
4homepage: "https://github.com/mirage/mirage-stack"
5doc: "https://mirage.github.io/mirage-stack/"
6license: "ISC"
7dev-repo: "git+https://github.com/mirage/mirage-stack.git"
8bug-reports: "https://github.com/mirage/mirage-stack/issues"
9tags: ["org:mirage"]
10
11build: [
12 [ "jbuilder" "subst" "-p" name ] {dev}
13 [ "jbuilder" "build" "-p" name "-j" jobs ]
14]
15
16depends: [
17 "ocaml" {>= "4.04.2"}
18 "jbuilder" {>= "1.0+beta9"}
19 "mirage-stack" {>= "1.3.0" & < "2.0.0"}
20 "ipaddr"
21 "lwt"
22 "cstruct" {>= "2.4.0"}
23]
24synopsis: "MirageOS signatures for network stacks"
25description: """
26mirage-stack provides a set of module types which libraries intended to be used as MirageOS network stacks should implement.
27
28The set of protocols defined is:
29
30[Mirage_stack.STACKV4](stackv4) and [Mirage_stack_lwt.STACKV4](stackv4-lwt)
31
32mirage-stack is distributed under the ISC license.
33
34[stackv4]: http://docs.mirage.io/mirage-stack/Mirage_stack/module-type-V4/index.html
35[stackv4-lwt]: http://docs.mirage.io/mirage-stack-lwt/Mirage_stack_lwt/module-type-V4/index.html"""
36url {
37 src:
38 "https://github.com/mirage/mirage-stack/releases/download/v1.3.0/mirage-stack-1.3.0.tbz"
39 checksum: [
40 "sha256=cdcf7ffa1a742b875dc0cf649f933e2ea2839e2e9ea7dac411fcc1ab527c1326"
41 "md5=019da0a632d12aee358a1d95e1831061"
42 ]
43}
44flags: deprecated
45post-messages: [ "mirage-stack-lwt is deprecated" ]