patches: handle tailscale not having patches

This commit is contained in:
Infinidoge 2025-04-08 14:44:49 -04:00
parent f9eb755d4f
commit 5d99eef26d
Signed by: Infinidoge
SSH key fingerprint: SHA256:EMoPe5e2dO0gEvtBb2xkZTz5dkyL0rBmuiGTKG5s96E

View file

@ -14,7 +14,7 @@ in
});
tailscale-doge = prev.tailscale.overrideAttrs (old: {
patches = old.patches ++ [ ./tailscale-cgnat.patch ];
patches = (old.patches or [ ]) ++ [ ./tailscale-cgnat.patch ];
doCheck = false; # patch causes some tests to fail
});