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.1.0/ethernet-v2.1.0.tbz" 46 checksum: [ 47 "sha256=692c6bbc994abea0e36c519666b8bb12ad42009dc36524c63ded6ce0569a5b70" 48 "sha512=2f619dd47623e36b6e94829e757535997992b974358d8dd783578de7b49a3f932194dd13dbf6d756095b525215c9afd5db4380b49e56dfeec8dfd9d0ecde6bb9" 49 ] 50}