qwen-code: fix login permission validation (#445595)

authored by jopejoe1 and committed by GitHub eea7f506 82f7a684

+6 -1
+6 -1
pkgs/by-name/qw/qwen-code/package.nix
··· 4 fetchFromGitHub, 5 nix-update-script, 6 jq, 7 ripgrep, 8 }: 9 ··· 30 jq 31 ]; 32 33 - buildInputs = [ ripgrep ]; 34 35 postPatch = '' 36 # Remove @lvce-editor/ripgrep dependency (no network on buildPhase ··· 76 77 mkdir -p $out/bin $out/share/qwen-code 78 cp -r bundle/* $out/share/qwen-code/ 79 patchShebangs $out/share/qwen-code 80 ln -s $out/share/qwen-code/gemini.js $out/bin/qwen 81
··· 4 fetchFromGitHub, 5 nix-update-script, 6 jq, 7 + git, 8 ripgrep, 9 }: 10 ··· 31 jq 32 ]; 33 34 + buildInputs = [ 35 + git 36 + ripgrep 37 + ]; 38 39 postPatch = '' 40 # Remove @lvce-editor/ripgrep dependency (no network on buildPhase ··· 80 81 mkdir -p $out/bin $out/share/qwen-code 82 cp -r bundle/* $out/share/qwen-code/ 83 + cp node_modules/tiktoken/tiktoken_bg.wasm $out/share/qwen-code/ 84 patchShebangs $out/share/qwen-code 85 ln -s $out/share/qwen-code/gemini.js $out/bin/qwen 86