nixpkgs/pkgs/development/ocaml-modules/vchan/default.nix
2023-03-28 11:26:14 +02:00

44 lines
909 B
Nix

{ lib, buildDunePackage, fetchurl
, ppx_cstruct, ppx_sexp_conv, ounit
, lwt, cstruct, io-page, mirage-flow, xenstore, xenstore_transport
, sexplib, cmdliner
}:
buildDunePackage rec {
pname = "vchan";
version = "6.0.1";
minimalOCamlVersion = "4.08";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/mirage/ocaml-vchan/releases/download/v${version}/vchan-${version}.tbz";
hash = "sha256-5E7dITMVirYoxUkp8ZamRAolyhA6avXGJNAioxeBuV0=";
};
propagatedBuildInputs = [
ppx_cstruct
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 ];
};
}