windows: remove qemu -> qemu_kvm indirection

stm32-no-overlay
Sebastien Bourdeauducq 2019-04-18 15:19:42 +08:00
parent 70ae89b91c
commit 196c24b24f
1 changed files with 2 additions and 3 deletions

View File

@ -8,8 +8,7 @@
with pkgs;
let
qemu = qemu_kvm;
qemu-img = "${qemu}/bin/qemu-img";
qemu-img = "${qemu_kvm}/bin/qemu-img";
runQemu = isolateNetwork: extraArgs:
let
restrict =
@ -44,5 +43,5 @@ let
in
{
inherit qemu-img runQemu ssh scp;
inputs = [ qemu openssh sshpass ];
inputs = [ qemu_kvm openssh sshpass ];
}