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 "bisect_ppx" {dev & >= "2.5.0"} 16 "dune" {>= "2.7.0"} 17 "cstruct-lwt" 18 "io-page" 19 "io-page-unix" 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 "alcotest-lwt" {with-test} 28] 29build: [ 30 ["dune" "subst"] {dev} 31 ["dune" "build" "-p" name "-j" jobs] 32 ["dune" "build" "-p" name "-j" jobs "@doc"] {with-doc} 33 ["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test} 34] 35dev-repo: "git+https://github.com/xapi-project/nbd.git" 36url { 37 src: 38 "https://github.com/xapi-project/nbd/releases/download/6.0.0/nbd-6.0.0.tbz" 39 checksum: [ 40 "sha256=8a0fb5f6f8a37422e09afbb28bb3158e714b43b23b6845225217ea619b72c4de" 41 "sha512=d3517bcda9261715c5d92d3966e694844f89ea93a7e9b622ed8e6e71046ae0fd7383926c17fb73af5de53b83474d7b2ade21baf662a3cb2d49b324ad122aec83" 42 ] 43} 44x-commit-hash: "41f9e670e0e1beb8714215b813b5b4d184fdcdc5"