Merge pull request #248162 from edanaher/anki-pass-command-line-arguments

anki-bin: pass command-line arguments through anki-wrapper

Atemu ce5e4a6e 5f9bf6e1

Changed files
+1 -1
pkgs
games
anki
+1 -1
pkgs/games/anki/bin.nix
···
targetPkgs = pkgs: (with pkgs; [ xorg.libxkbfile xcb-util-cursor-HEAD krb5 ]);
runScript = writeShellScript "anki-wrapper.sh" ''
-
exec ${unpacked}/bin/anki ${ lib.strings.escapeShellArgs commandLineArgs }
'';
extraInstallCommands = ''
···
targetPkgs = pkgs: (with pkgs; [ xorg.libxkbfile xcb-util-cursor-HEAD krb5 ]);
runScript = writeShellScript "anki-wrapper.sh" ''
+
exec ${unpacked}/bin/anki ${ lib.strings.escapeShellArgs commandLineArgs } "$@"
'';
extraInstallCommands = ''