summary refs log tree commit diff
path: root/pkgs/os-specific/linux/spectrum/default.nix
blob: c4cccab3787a40d0ea866594e0838720d05318b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ newScope, linux_cros }:

let
  self = with self; {
    callPackage = newScope self;

    sys-vms = callPackage ./vm { };

    spectrum-vm = callPackage ./spectrum-vm { linux = linux_vm; };

    spectrum-testhost = callPackage ./testhost { };

    linux_vm = callPackage ./linux/vm.nix { linux = linux_cros; };

    makeRootfs = callPackage ./rootfs { };
  };
in
self