ocamlPackages.{mirage-net-xen,netchannel}: init at 2.0.0

This commit is contained in:
sternenseemann
2021-04-25 13:15:10 +02:00
parent 980a2bed3b
commit 2fe8239172
3 changed files with 98 additions and 0 deletions
@@ -0,0 +1,39 @@
{ lib
, buildDunePackage
, netchannel
, ppx_sexp_conv
, lwt
, cstruct
, mirage-net
, mirage-xen
, io-page
, lwt-dllist
, logs
}:
buildDunePackage {
pname = "mirage-net-xen";
inherit (netchannel)
src
version
useDune2
minimumOCamlVersion
meta
;
nativeBuildInputs = [
ppx_sexp_conv
];
propagatedBuildInputs = [
lwt
cstruct
netchannel
mirage-net
mirage-xen
io-page
lwt-dllist
logs
];
}