2025-02-10 21:55:08 +00:00
|
|
|
let
|
|
|
|
img =
|
|
|
|
(import <liminix> {
|
2024-10-06 14:55:01 +00:00
|
|
|
device = import <liminix/devices/qemu>;
|
2023-11-06 21:52:31 +00:00
|
|
|
liminix-config = ./configuration.nix;
|
|
|
|
}).outputs.vmroot;
|
2025-02-10 21:55:08 +00:00
|
|
|
pkgs = import <nixpkgs> { overlays = [ (import ../../overlay.nix) ]; };
|
|
|
|
in
|
|
|
|
pkgs.runCommand "check"
|
|
|
|
{
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
|
|
expect
|
|
|
|
socat
|
|
|
|
];
|
|
|
|
}
|
|
|
|
''
|
|
|
|
mkdir vm
|
|
|
|
${img}/run.sh --background ./vm
|
|
|
|
expect ${./script.expect} >$out
|
|
|
|
''
|