From 196c24b24fbb02dbe8e769b19cfc9ab6bb3e302d Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 18 Apr 2019 15:19:42 +0800 Subject: [PATCH] windows: remove qemu -> qemu_kvm indirection --- artiq/windows/qemu.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/artiq/windows/qemu.nix b/artiq/windows/qemu.nix index ecb7c8d..4cd3986 100644 --- a/artiq/windows/qemu.nix +++ b/artiq/windows/qemu.nix @@ -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 ]; }