nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 39 lines 449 B view raw
1{ 2 buildDunePackage, 3 netchannel, 4 ppx_sexp_conv, 5 lwt, 6 cstruct, 7 mirage-net, 8 mirage-xen, 9 io-page, 10 lwt-dllist, 11 logs, 12}: 13 14buildDunePackage { 15 pname = "mirage-net-xen"; 16 17 inherit (netchannel) 18 src 19 version 20 meta 21 ; 22 23 duneVersion = "3"; 24 25 nativeBuildInputs = [ 26 ppx_sexp_conv 27 ]; 28 29 propagatedBuildInputs = [ 30 lwt 31 cstruct 32 netchannel 33 mirage-net 34 mirage-xen 35 io-page 36 lwt-dllist 37 logs 38 ]; 39}