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-nat"
5bug-reports: "https://github.com/mirage/mirage-nat/issues/"
6dev-repo: "git+https://github.com/mirage/mirage-nat.git"
7doc: "https://mirage.github.io/mirage-nat/"
8license: "ISC"
9build: [
10 ["dune" "subst"] {dev}
11 ["dune" "build" "-p" name "-j" jobs]
12 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
13]
14depends: [
15 "ocaml" {>= "4.06.0"}
16 "ipaddr"
17 "ipaddr" {with-test & < "5.0.0"}
18 "cstruct"
19 "lwt"
20 "rresult"
21 "logs"
22 "lru" {>= "0.3.0"}
23 "ppx_deriving" {>= "4.2" }
24 "dune" {>= "1.0"}
25 "tcpip" { >= "4.1.0" & < "6.0.0" }
26 "ethernet" { >= "2.0.0" & < "3.0.0" }
27 "stdlib-shims"
28 "alcotest" {with-test}
29 "mirage-clock-unix" {with-test}
30]
31synopsis: "Mirage-nat is a library for network address translation to be used with MirageOS"
32description: """
33Mirage-nat is a library for [network address
34translation](https://tools.ietf.org/html/rfc2663). It is intended for use in
35[MirageOS](https://mirage.io) and makes extensive use of
36[tcpip](https://github.com/mirage/mirage-tcpip), the network stack used by
37default in MirageOS unikernels.
38"""
39url {
40 src:
41 "https://github.com/mirage/mirage-nat/releases/download/v2.1.0/mirage-nat-v2.1.0.tbz"
42 checksum: [
43 "sha256=df9a5feafaf008767b7ab709e9fdef0b92691f7873f7a32cd5da1cb2dd38d979"
44 "sha512=a6f5715aad6d01937d66413e2912c82b523faa89f94f23965bb92e8c9f4948bd8f8074e6d93d1a9568a37e825f6d425a7cce5252a70beb9e081f86f29a40edd5"
45 ]
46}