lol

gclient2nix: update, fix for electron_38

Fixes error:

```
File "/nix/store/x95xf16qsvblyxgcag1fqmrsqm7px6rk-depot_tools-452fe3b/gclient_eval.py", line 643, in _convert
raise ValueError('invalid "and" operand %r (inside %r)' %
ValueError: invalid "and" operand 'checkout_riscv64' (inside 'checkout_linux and checkout_riscv64 and non_git_source')
```

authored by

teutat3s and committed by
Yaya
62d173f9 5ec4ede6

+3 -3
+1 -1
pkgs/by-name/gc/gclient2nix/gclient2nix.py
··· 91 91 }, 92 92 **{ 93 93 f"checkout_{arch}": True 94 - for arch in ["x64", "arm64", "arm", "x86", "mips", "mips64", "ppc"] 94 + for arch in ["x64", "arm64", "arm", "x86", "mips", "mips64", "ppc", "riscv64"] 95 95 }, 96 96 }, 97 97 "",
+2 -2
pkgs/by-name/gc/gclient2nix/package.nix
··· 68 68 # substitutions 69 69 depot_tools_checkout = fetchgit { 70 70 url = "https://chromium.googlesource.com/chromium/tools/depot_tools"; 71 - rev = "452fe3be37f78fbecefa1b4b0d359531bcd70d0d"; 72 - hash = "sha256-8IiJOm0FLa/u1Vd96tb33Ruj4IUTCeYgBpTk88znhPw="; 71 + rev = "fa63ec7437108dcb3a611c6a6c5f3d96771e9581"; 72 + hash = "sha256-hRIwhIdRF2GbyXbpOdi/lla+/XYM+gKosoK+T+kYYu0="; 73 73 }; 74 74 75 75 passthru = {