summary refs log blame commit diff
path: root/pkgs/os-specific/linux/spectrum/default.nix
blob: c4cccab3787a40d0ea866594e0838720d05318b2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                                

                                   

                                                                  

                                                   

                                                                  
                                          


    
{ 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