this repo has no description
1opam-version: "2.0" 2synopsis: "Network Block Device (NBD) protocol implementation" 3description: """ 4This library allows applications to export and consume block 5devices using the NBD protocol (as used by Linux, qemu etc)""" 6maintainer: "Xapi project maintainers" 7authors: ["Jonathan Ludlam" "David Scott" "Thomas Sanders"] 8license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 9tags: ["org:mirage" "org:xapi-project"] 10homepage: "https://github.com/xapi-project/nbd" 11doc: "https://xapi-project.github.io/nbd/nbd-unix/index.html" 12bug-reports: "https://github.com/xapi-project/nbd/issues" 13depends: [ 14 "ocaml" {>= "4.08.0"} 15 "bigarray-compat" 16 "bisect_ppx" {dev & >= "2.5.0"} 17 "dune" {>= "2.7.0"} 18 "cstruct-lwt" 19 "io-page" {>= "2.4.0"} 20 "lwt" {>= "2.7.0"} 21 "lwt_ssl" 22 "mirage-block" {>= "2.0.0"} 23 "mirage-block-unix" 24 "nbd" {=version} 25 "odoc" {with-doc} 26 "ssl" 27] 28build: [ 29 ["dune" "subst"] {dev} 30 ["dune" "build" "-p" name "-j" jobs] 31 ["dune" "build" "-p" name "-j" jobs "@doc"] {with-doc} 32 ["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test} 33] 34dev-repo: "git+https://github.com/xapi-project/nbd.git" 35url { 36 src: 37 "https://github.com/xapi-project/nbd/releases/download/6.0.1/nbd-6.0.1.tbz" 38 checksum: [ 39 "sha256=2bd3db48f84d5cc3e67ef46d323034118a6936276b2ca2689c871733482d59d0" 40 "sha512=c8588b81a7e99609c934b7f720caf50d0cee1fd3f86465ead3f9a5da2de94cb8d14a767b365efe66f5e75112889bf2debc97b33f71ec58afb877b06c11d49c22" 41 ] 42} 43x-commit-hash: "aa1bfc5eb58c1defd89cd96bb98f7b6a72fadf42"