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" {>= "1.0"} 22 "ocaml" {>= "4.08.0"} 23 "cstruct" {>= "6.0.0"} 24 "mirage-net" {>= "3.0.0"} 25 "macaddr" {>= "4.0.0"} 26 "lwt" {>= "3.0.0"} 27 "logs" {>= "0.6.0"} 28] 29conflicts: [ "result" {< "1.5"} ] 30synopsis: "OCaml Ethernet (IEEE 802.3) layer, used in MirageOS" 31description: """ 32`ethernet` provides an [Ethernet](https://en.wikipedia.org/wiki/Ethernet) 33(specified by IEEE 802.3) layer implementation for the 34[Mirage operating system](https://mirage.io). 35""" 36url { 37 src: 38 "https://github.com/mirage/ethernet/releases/download/v3.2.0/ethernet-3.2.0.tbz" 39 checksum: [ 40 "sha256=4c1da70214221d9d4393a9ffde2e3db3d1ca347f76c8d525df197de21072ac09" 41 "sha512=33bc592ca642b7b4cefbdb473ce21da80a4517d2ecf7b40614a19f5edaf309f5cae3f30b5e069ee3bb363ad778d72920c448679f086a2a1813b1db1b0cd8ddc3" 42 ] 43} 44x-commit-hash: "f566a7135d481302637587b566430cd66698d630" 45x-maintenance-intent: [ "(latest)" ]