📦 [shared] Update dependencies and add temp fix for building Tailscale

This commit is contained in:
2025-09-06 15:59:46 +02:00
parent d8653c4aa4
commit 6686cee866
2 changed files with 38 additions and 25 deletions

View File

@ -174,7 +174,20 @@
};
}
{
nixpkgs.overlays = [ ];
nixpkgs.overlays = [
# TODO temp fix for tailscale: https://github.com/tailscale/tailscale/issues/16966#issuecomment-3239543750
(_: prev: {
tailscale = prev.tailscale.overrideAttrs (old: {
checkFlags = builtins.map (
flag:
if prev.lib.hasPrefix "-skip=" flag then
flag + "|^TestGetList$|^TestIgnoreLocallyBoundPorts$|^TestPoller$"
else
flag
) old.checkFlags;
});
})
];
}
];
};