tailscale: 1.28.0 -> 1.30.0

https://github.com/tailscale/tailscale/releases/tag/v1.30.0
This commit is contained in:
kilianar 2022-08-31 18:04:55 +02:00
parent 30484e44ce
commit 9a7bd01e52
2 changed files with 6 additions and 4 deletions

View File

@ -2,15 +2,15 @@
buildGoModule rec {
pname = "tailscale";
version = "1.28.0";
version = "1.30.0";
src = fetchFromGitHub {
owner = "tailscale";
repo = "tailscale";
rev = "v${version}";
sha256 = "sha256-6h9LAtaDIwQb+oU4zNABJeBOMaiKqWvhxsFbwEQNC4o=";
sha256 = "sha256-KruBCpJe6RhQYxNopj7ZZlZZy/UYtO1vQMvHxUgw0P8=";
};
vendorSha256 = "sha256-W5QiHhdSP5xPIJWs8LMl+EGu/AE9/aFD2sOZOnDL0yo=";
vendorSha256 = "sha256-+7Cr7wmt4PheHJRAlyKhRd6QRIZBqrbVtn5I94h8lLo=";
nativeBuildInputs = lib.optionals stdenv.isLinux [ makeWrapper ];

View File

@ -23535,7 +23535,9 @@ with pkgs;
systemd-journal2gelf = callPackage ../tools/system/systemd-journal2gelf { };
tailscale = callPackage ../servers/tailscale { };
tailscale = callPackage ../servers/tailscale {
buildGoModule = buildGo119Module;
};
thanos = callPackage ../servers/monitoring/thanos { };