📦 [shared] Update dependencies and add temp fix for building Tailscale
This commit is contained in:
15
flake.nix
15
flake.nix
@ -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;
|
||||
});
|
||||
})
|
||||
];
|
||||
}
|
||||
];
|
||||
};
|
||||
|
Reference in New Issue
Block a user