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