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 "cstruct" 18 "lwt" 19 "rresult" 20 "logs" 21 "lru" {>= "0.3.0"} 22 "ppx_deriving" {>= "4.2" } 23 "dune" {>= "1.0"} 24 "tcpip" { >= "4.1.0" & < "6.3.0"} 25 "ethernet" { >= "2.0.0" & < "3.0.0" } 26 "stdlib-shims" 27 "alcotest" {with-test} 28 "mirage-clock-unix" {with-test} 29] 30synopsis: "Mirage-nat is a library for network address translation to be used with MirageOS" 31description: """ 32Mirage-nat is a library for [network address 33translation](https://tools.ietf.org/html/rfc2663). It is intended for use in 34[MirageOS](https://mirage.io) and makes extensive use of 35[tcpip](https://github.com/mirage/mirage-tcpip), the network stack used by 36default in MirageOS unikernels. 37""" 38x-commit-hash: "1bed6c49b7554123a99e5e56d1f0967707424bb2" 39url { 40 src: 41 "https://github.com/mirage/mirage-nat/releases/download/v2.2.3/mirage-nat-v2.2.3.tbz" 42 checksum: [ 43 "sha256=aa0eb326df497b5453fab80a2fffc0ab6627f30add7c034375284282822cc933" 44 "sha512=a98cb784299645ce0f3e0c81a349f5fec621819e3324c4dab48207bebfdf1d1f8388bd52249643b0a49eeb1d83cad5a79590d489ea8d5883e41402afef60b386" 45 ] 46}