this repo has no description
1opam-version: "2.0" 2maintainer: "anil@recoil.org" 3authors: [ 4 "Anil Madhavapeddy" 5 "David Scott" 6 "Thomas Gazagnaire" 7 "Hannes Mehnert" 8] 9homepage: "https://github.com/mirage/mirage-net-fd" 10bug-reports: "https://github.com/mirage/mirage-net-fd/issues" 11dev-repo: "git+https://github.com/mirage/mirage-net-fd.git" 12license: "ISC" 13doc: "https://mirage.github.io/mirage-net-fd/" 14 15build: [ 16 ["jbuilder" "subst" "-p" name "--name" name] {dev} 17 ["jbuilder" "build" "-p" name "-j" jobs] 18] 19depends: [ 20 "ocaml" {>= "4.02.3"} 21 "jbuilder" {>= "1.0+beta9"} 22 "cstruct" {>= "3.0.0" & < "6.0.0"} 23 "cstruct-lwt" {>= "3.0.0" & < "6.0.0"} 24 "lwt" {>= "2.4.3"} 25 "mirage-net-lwt" {>= "1.0.0" & < "2.0.0"} 26 "io-page-unix" {>= "2.0.0"} 27 "result" 28 "ipaddr" 29 "alcotest" {with-test & < "0.8.0"} 30] 31synopsis: "MirageOS network interfaces using raw sockets" 32description: """ 33Implementation of MirageOS network interfaces using raw sockets. The 34caller is in charge of opening the file-descriptor with that are passed 35to the `connect` function.""" 36url { 37 src: 38 "https://github.com/mirage/mirage-net-fd/releases/download/0.2.1/mirage-net-fd-0.2.1.tbz" 39 checksum: [ 40 "sha256=2a2e032829a3ee2daba0bc6e509afa94973399c7cb7b53c1a7b160538bed7b60" 41 "md5=46149fe34d65ea67f00d11a93864d6de" 42 ] 43} 44flags: deprecated 45x-maintenance-intent: ["(none)"]