You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.2 KiB
38 lines
1.2 KiB
opam-version: "2.0" |
|
maintainer: "anil@recoil.org" |
|
authors: ["David Sheets" "Anil Madhavapeddy" "Hugo Heuzard"] |
|
synopsis: "A library for manipulation of MAC address representations" |
|
description: """ |
|
Manipulate 48-bit Ethernet MAC addresses using this library. |
|
|
|
There are the following ocamlfind libraries included as part of this |
|
package: |
|
|
|
- `macaddr`: The `Macaddr` module for MAC address manipulation. |
|
- `macaddr.top`: Toplevel printers for Macaddr. |
|
- `macaddr.sexp`: S-expression converters for Macaddr. |
|
""" |
|
|
|
license: "ISC" |
|
tags: ["org:mirage" "org:xapi-project"] |
|
homepage: "https://github.com/mirage/ocaml-ipaddr" |
|
doc: "https://mirage.github.io/ocaml-ipaddr/" |
|
bug-reports: "https://github.com/mirage/ocaml-ipaddr/issues" |
|
depends: [ |
|
"ocaml" {>= "4.04.0"} |
|
"dune" {build} |
|
"sexplib0" {< "v0.12"} |
|
"ounit" {with-test} |
|
"ppx_sexp_conv" {with-test & < "v0.12"} |
|
] |
|
conflicts: [ "ipaddr" {< "3.0.0"} ] |
|
build: [ |
|
["dune" "subst"] {pinned} |
|
["dune" "build" "-p" name "-j" jobs] |
|
] |
|
dev-repo: "git+https://github.com/mirage/ocaml-ipaddr.git" |
|
url { |
|
src: |
|
"https://github.com/mirage/ocaml-ipaddr/releases/download/3.0.0/ipaddr-3.0.0.tbz" |
|
checksum: "md5=29248b09ead9ac272cd0f4c8ae934082" |
|
}
|
|
|