2021-01-17 12:57:41 +01:00
|
|
|
{ lib, buildDunePackage, fetchurl
|
2022-06-26 19:44:15 +02:00
|
|
|
, ppx_cstruct, ppx_sexp_conv, ounit
|
2021-01-17 12:57:41 +01:00
|
|
|
, lwt, cstruct, io-page, mirage-flow, xenstore, xenstore_transport
|
|
|
|
, sexplib, cmdliner
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "vchan";
|
2022-06-26 19:44:15 +02:00
|
|
|
version = "6.0.1";
|
2021-01-17 12:57:41 +01:00
|
|
|
|
2022-06-26 19:44:15 +02:00
|
|
|
minimalOCamlVersion = "4.08";
|
2021-01-17 12:57:41 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-06-26 19:44:15 +02:00
|
|
|
url = "https://github.com/mirage/ocaml-vchan/releases/download/v${version}/vchan-${version}.tbz";
|
|
|
|
sha256 = "sha256-5E7dITMVirYoxUkp8ZamRAolyhA6avXGJNAioxeBuV0=";
|
2021-01-17 12:57:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
ppx_cstruct
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
ppx_sexp_conv
|
|
|
|
lwt
|
|
|
|
cstruct
|
|
|
|
io-page
|
|
|
|
mirage-flow
|
|
|
|
xenstore
|
|
|
|
xenstore_transport
|
|
|
|
sexplib
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
checkInputs = [
|
|
|
|
cmdliner
|
|
|
|
ounit
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Xen Vchan implementation";
|
|
|
|
homepage = "https://github.com/mirage/ocaml-vchan";
|
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
|
|
};
|
|
|
|
}
|