windows: remove qemu -> qemu_kvm indirection

pull/16/head
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; with pkgs;
let let
qemu = qemu_kvm; qemu-img = "${qemu_kvm}/bin/qemu-img";
qemu-img = "${qemu}/bin/qemu-img";
runQemu = isolateNetwork: extraArgs: runQemu = isolateNetwork: extraArgs:
let let
restrict = restrict =
@ -44,5 +43,5 @@ let
in in
{ {
inherit qemu-img runQemu ssh scp; inherit qemu-img runQemu ssh scp;
inputs = [ qemu openssh sshpass ]; inputs = [ qemu_kvm openssh sshpass ];
} }