From 4255fb08c94dac6d74def7c87fb8676b220b15e9 Mon Sep 17 00:00:00 2001 From: Alexandre Esteves Date: Tue, 10 Feb 2026 20:16:44 +0000 Subject: [PATCH] lib.systems: fix path to wine executable --- lib/systems/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/systems/default.nix b/lib/systems/default.nix index e04f079035db..534af380738d 100644 --- a/lib/systems/default.nix +++ b/lib/systems/default.nix @@ -384,7 +384,7 @@ let if pkgs.stdenv.hostPlatform.canExecute final then lib.getExe (pkgs.writeShellScriptBin "exec" ''exec "$@"'') else if final.isWindows then - "${wine}/bin/wine${optionalString (final.parsed.cpu.bits == 64) "64"}" + "${wine}/bin/wine" else if final.isLinux && pkgs.stdenv.hostPlatform.isLinux && final.qemuArch != null then "${pkgs.qemu-user}/bin/qemu-${final.qemuArch}" else if final.isWasi then