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 "cstruct" 17 "mirage-time-lwt" 18 "mirage-clock-lwt" 19 "lwt" 20 "rresult" 21 "logs" 22 "lru" {< "0.3.0"} 23 "ppx_deriving" {build & >= "4.2" } 24 "dune" {>= "1.0"} 25 "tcpip" { >= "3.7.0" & < "4.0.0"} 26 "ethernet" { >= "2.0.0" & < "3.0.0" } 27 "arp" 28 "alcotest" {with-test} 29 "mirage-clock-unix" {with-test} 30] 31synopsis: 32 "Library for network address translation intended for use with mirage unikernels" 33url { 34 src: 35 "https://github.com/mirage/mirage-nat/releases/download/v1.1.0/mirage-nat-v1.1.0.tbz" 36 checksum: [ 37 "sha256=70bda623935df6fcebe0f2d46f7cd4b4c3309732ded45d9600086ef77d159055" 38 "md5=39659bd1b5c044a13b4b25c3a9565546" 39 ] 40}