this repo has no description
1opam-version: "2.0" 2maintainer: "mirageos-devel@lists.xenproject.org" 3homepage: "https://github.com/mirage/ethernet" 4dev-repo: "git+https://github.com/mirage/ethernet.git" 5bug-reports: "https://github.com/mirage/ethernet/issues" 6doc: "https://mirage.github.io/ethernet/" 7authors: [ 8 "Anil Madhavapeddy" "Balraj Singh" "Richard Mortier" "Nicolas Ojeda Bar" 9 "Thomas Gazagnaire" "Vincent Bernardoff" "Magnus Skjegstad" "Mindy Preston" 10 "Thomas Leonard" "David Scott" "Gabor Pali" "Hannes Mehnert" "Haris Rotsos" 11 "Kia" "Luke Dunstan" "Pablo Polvorin" "Tim Cuthbertson" "lnmx" "pqwy" ] 12license: "ISC" 13tags: ["org:mirage"] 14 15build: [ 16 ["dune" "subst"] {dev} 17 ["dune" "build" "-p" name "-j" jobs] 18] 19 20depends: [ 21 "dune" 22 "ocaml" {>= "4.04.0"} 23 "rresult" {>= "0.5.0"} 24 "cstruct" {>= "3.0.2" & < "6.1.0"} 25 "ppx_cstruct" 26 "mirage-net-lwt" {>= "2.0.0"} 27 "mirage-protocols-lwt" {>= "2.0.0"} 28 "macaddr" {< "4.0.0"} 29 "mirage-profile" {>= "0.5"} 30 "fmt" 31 "lwt" {>= "3.0.0"} 32 "logs" {>= "0.6.0"} 33] 34conflicts: [ 35 "tcpip" {< "3.7.0"} 36] 37synopsis: "OCaml Ethernet (IEEE 802.3) layer, used in MirageOS" 38description: """ 39`ethernet` provides an [Ethernet](https://en.wikipedia.org/wiki/Ethernet) 40(specified by IEEE 802.3) layer implementation for the 41[Mirage operating system](https://mirage.io). 42""" 43url { 44 src: 45 "https://github.com/mirage/ethernet/releases/download/v2.0.0/ethernet-v2.0.0.tbz" 46 checksum: [ 47 "sha256=09d53ed34a4fe4826ef83935bb545a0fe92131c0c8bdd6255de148e1c4a3efba" 48 "md5=547520508219768cb0011f1e18fc6b05" 49 ] 50}