about summary refs log tree commit diff
path: root/pkgs/servers/tailscale
diff options
context:
space:
mode:
authorMuhammad Falak R Wani <falakreyaz@gmail.com>2023-08-20 12:18:14 +0530
committerMuhammad Falak R Wani <falakreyaz@gmail.com>2023-08-23 08:32:33 +0530
commit069c21c203272106ffca526d9674e1db3d7531db (patch)
tree57982900cc484051e9a593d8ed8c4c7856dda209 /pkgs/servers/tailscale
parent3f141be99c2001ffe3b4fdf1bb5070eb81867088 (diff)
tailscale: 1.46.1 -> 1.48.1
Diff: https://github.com/tailscale/tailscale/compare/v1.46.1...v1.48.1
Changelog: https://github.com/tailscale/tailscale/releases/tag/v1.48.1
Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
Diffstat (limited to 'pkgs/servers/tailscale')
-rw-r--r--pkgs/servers/tailscale/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/servers/tailscale/default.nix b/pkgs/servers/tailscale/default.nix
index 78548b628fc26..bfa583da8557a 100644
--- a/pkgs/servers/tailscale/default.nix
+++ b/pkgs/servers/tailscale/default.nix
@@ -1,9 +1,9 @@
-{ lib, stdenv, buildGoModule, fetchFromGitHub, makeWrapper, iptables, iproute2, procps, shadow, getent }:
+{ lib, stdenv, buildGo121Module, fetchFromGitHub, makeWrapper, iptables, iproute2, procps, shadow, getent }:
 
 let
-  version = "1.46.1";
+  version = "1.48.1";
 in
-buildGoModule {
+buildGo121Module {
   pname = "tailscale";
   inherit version;
 
@@ -11,9 +11,9 @@ buildGoModule {
     owner = "tailscale";
     repo = "tailscale";
     rev = "v${version}";
-    hash = "sha256-aweJys46MMnkSKJoLUFCzc6sWUP+Cv5+IFVVe9iEPGI=";
+    hash = "sha256-jWnke49b6inybPmiZOkxI3C8VoYe4Syi84YhvL8zxeI=";
   };
-  vendorHash = "sha256-oELDIt+mRiBGAdoEUkSAs2SM6urkHm1aAtJnev8jDYM=";
+  vendorHash = "sha256-Fr4VZcKrXnT1PZuEG110KBefjcZzRsQRBSvByELKAy4=";
 
   nativeBuildInputs = lib.optionals stdenv.isLinux [ makeWrapper ];