this repo has no description
1opam-version: "2.0" 2maintainer: "anil@recoil.org" 3authors: ["David Sheets" "Anil Madhavapeddy" "Hugo Heuzard"] 4synopsis: "A library for manipulation of MAC address representations" 5description: """ 6Manipulate 48-bit Ethernet MAC addresses using this library. 7 8There are the following ocamlfind libraries included as part of this 9package: 10 11- `macaddr`: The `Macaddr` module for MAC address manipulation. 12- `macaddr.top`: Toplevel printers for Macaddr. 13- `macaddr.sexp`: S-expression converters for Macaddr. 14""" 15 16license: "ISC" 17tags: ["org:mirage" "org:xapi-project"] 18homepage: "https://github.com/mirage/ocaml-ipaddr" 19doc: "https://mirage.github.io/ocaml-ipaddr/" 20bug-reports: "https://github.com/mirage/ocaml-ipaddr/issues" 21depends: [ 22 "ocaml" {>= "4.04.0"} 23 "dune" 24 "sexplib0" 25 "ounit" {with-test} 26 "ppx_sexp_conv" {with-test} 27] 28conflicts: [ "ipaddr" {< "3.0.0"} ] 29build: [ 30 ["dune" "subst"] {dev} 31 ["dune" "build" "-p" name "-j" jobs] 32] 33dev-repo: "git+https://github.com/mirage/ocaml-ipaddr.git" 34url { 35 src: 36 "https://github.com/mirage/ocaml-ipaddr/releases/download/3.0.0/ipaddr-3.0.0.tbz" 37 checksum: [ 38 "sha256=c80acde4c774a9e08c7146cc2386a8ced85268288202081157cfca235a5239a6" 39 "md5=29248b09ead9ac272cd0f4c8ae934082" 40 ] 41}