2
0
Fork 0
genodepkgs/tests/vmm_x86.nix

15 lines
299 B
Nix
Raw Normal View History

2020-04-26 07:18:38 +02:00
# SPDX-License-Identifier: CC0-1.0
{ pkgs, ... }:
2020-04-26 07:18:38 +02:00
{
2020-04-26 07:18:38 +02:00
name = "vmm";
constraints = specs:
with builtins;
all (f: any f specs) [ (spec: spec == "nova") (spec: spec == "x86") ];
machine = {
config = ./vmm_x86.dhall;
inputs = map pkgs.genodeSources.make [ "test/vmm_x86" ];
};
2020-04-26 07:18:38 +02:00
}