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 "ipaddr" 16 "ipaddr" {with-test & < "5.0.0"} 17 "cstruct" 18 "mirage-time-lwt" 19 "mirage-clock-lwt" 20 "lwt" 21 "rresult" 22 "logs" 23 "lru" {>= "0.3.0"} 24 "ppx_deriving" {build & >= "4.2" } 25 "dune" {>= "1.0"} 26 "tcpip" { >= "3.7.2" & < "4.0.0" } 27 "ethernet" { >= "2.0.0" & < "3.0.0" } 28 "arp" 29 "alcotest" {with-test} 30 "mirage-clock-unix" {with-test} 31] 32synopsis: "Mirage-nat is a library for network address translation to be used with MirageOS" 33description: """ 34Mirage-nat is a library for [network address 35translation](https://tools.ietf.org/html/rfc2663). It is intended for use in 36[MirageOS](https://mirage.io) and makes extensive use of 37[tcpip](https://github.com/mirage/mirage-tcpip), the network stack used by 38default in MirageOS unikernels. 39""" 40url { 41 src: 42 "https://github.com/mirage/mirage-nat/releases/download/v1.2.0/mirage-nat-v1.2.0.tbz" 43 checksum: [ 44 "sha256=3ce45b2770840b8c1e7d2024d5eebc923fc75ba8849f0db81544653941f6c35d" 45 "md5=da7cf8e84c4dd1822cac912deb035f5b" 46 ] 47}