this repo has no description
1opam-version: "2.0" 2maintainer: "rob.hoes@citrix.com" 3authors: "rob.hoes@citrix.com" 4homepage: "https://github.com/xapi-project/ocaml-netlink" 5bug-reports: "https://github.com/xapi-project/ocaml-netlink/issues" 6dev-repo: "git+https://github.com/xapi-project/ocaml-netlink" 7build: [ 8 [make] 9] 10install: [ 11 [make "install"] 12] 13remove: [ 14 [make "uninstall"] 15] 16depends: [ 17 "ocaml" {< "5.0.0"} 18 "ocamlfind" 19 "ctypes" {< "0.21.0"} 20 "ctypes-foreign" 21 "ocamlbuild" {build} 22] 23available: [ os="linux" ] 24depexts: [ 25 ["libnl-3-dev"] {os-family = "debian" & os-distribution != "ubuntu"} 26 ["libnl-3-200"] {os-distribution = "ubuntu"} 27] 28synopsis: "Bindings to the Netlink Protocol Library Suite (libnl)" 29description: """ 30The Netlink Protocol Library Suite (libnl, see 31http://www.infradead.org/~tgr/libnl/) provides APIs to the netlink 32protocol, allowing you to interact with network devices in the Linux kernel.""" 33url { 34 src: "https://github.com/xapi-project/ocaml-netlink/archive/v0.2.1.tar.gz" 35 checksum: [ 36 "sha256=f9efcebdceabb49719114b061983de895b610b321fdab2b9e1cf21e314c1bc87" 37 "md5=8e9287e8efca772f26922f661a5cd8e1" 38 ] 39}