sigil/tests/vmm_x86.nix

14 lines
348 B
Nix

{
name = "vmm_x86";
constraints = specs:
with builtins;
all (f: any f specs) [ (spec: spec == "nova") (spec: spec == "x86") ];
machine = { pkgs, ... }: {
genode.init.children.vmm = {
configFile = ./vmm_x86.dhall;
coreROMs = [ "platform_info" ];
inputs = with pkgs.genodePackages; [ test-vmm_x86 ];
};
};
}