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