mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
38 lines
437 B
Nix
38 lines
437 B
Nix
{ 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
|
|
meta
|
|
;
|
|
|
|
duneVersion = "3";
|
|
|
|
nativeBuildInputs = [
|
|
ppx_sexp_conv
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
lwt
|
|
cstruct
|
|
netchannel
|
|
mirage-net
|
|
mirage-xen
|
|
io-page
|
|
lwt-dllist
|
|
logs
|
|
];
|
|
}
|