tailscale: 1.72.1 -> 1.74.0

- switch to go 1.23.0

Changes: https://tailscale.com/changelog#2024-09-12
This commit is contained in:
Ashish SHUKLA
2024-09-13 07:18:25 +05:30
parent 111ed8812c
commit 40a20e6af1
2 changed files with 6 additions and 4 deletions
+3 -3
View File
@@ -15,7 +15,7 @@
}:
let
version = "1.72.1";
version = "1.74.0";
in
buildGoModule {
pname = "tailscale";
@@ -25,7 +25,7 @@ buildGoModule {
owner = "tailscale";
repo = "tailscale";
rev = "v${version}";
hash = "sha256-b1o3UHotVs5/+cpMx9q8bvt6BSM2QamLDUNyBNfb58A=";
hash = "sha256-KTg1rxyCgvZAwkGxhFXLff5UggKlqa6VLMItK81JV2k=";
};
patches = [
@@ -37,7 +37,7 @@ buildGoModule {
})
];
vendorHash = "sha256-M5e5dE1gGW3ly94r3SxCsBmVwbBmhVtaVDW691vxG/8=";
vendorHash = "sha256-HJEgBs2GOzXvRa95LdwySQmG4/+QwupFDBGrQT6Y2vE=";
nativeBuildInputs = lib.optionals stdenv.isLinux [ makeWrapper ] ++ [ installShellFiles ];
+3 -1
View File
@@ -25777,7 +25777,9 @@ with pkgs;
systemd-journal2gelf = callPackage ../tools/system/systemd-journal2gelf { };
tailscale = callPackage ../servers/tailscale { };
tailscale = callPackage ../servers/tailscale {
buildGoModule = buildGo123Module;
};
tailscale-systray = callPackage ../applications/misc/tailscale-systray { };