Merge pull request #221279 from drupol/bump/tailscale-march-2023

tailscale: 1.36.2 -> 1.38.1
This commit is contained in:
Nick Cao 2023-03-16 09:58:39 +08:00 committed by GitHub
commit e09715478a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 4 deletions

View file

@ -2,15 +2,15 @@
buildGoModule rec {
pname = "tailscale";
version = "1.36.2";
version = "1.38.1";
src = fetchFromGitHub {
owner = "tailscale";
repo = "tailscale";
rev = "v${version}";
hash = "sha256-5rGRe4ENIQVz8KDy1OuSKtD7UMVYmU2DaJAn7wrhXVQ=";
hash = "sha256-2VTYZhC/U32fzEJCxkCB35IqQBALKXQA23SvhY57lSU=";
};
vendorHash = "sha256-xdZlwv/2knOE7xaGeNHYNdztflhLLmirGzPOJpDvk3s=";
vendorHash = "sha256-LIvaxSo+4LuHUk8DIZ27IaRQwaDnjW6Jwm5AEc/V95A=";
nativeBuildInputs = lib.optionals stdenv.isLinux [ makeWrapper ];

View file

@ -25656,7 +25656,10 @@ with pkgs;
systemd-journal2gelf = callPackage ../tools/system/systemd-journal2gelf { };
tailscale = callPackage ../servers/tailscale { };
tailscale = callPackage ../servers/tailscale {
# Version 1.38.1 requires Go >= 1.20
buildGoModule = buildGo120Module;
};
tailspin = callPackage ../tools/misc/tailspin { };