about summary refs log tree commit diff
path: root/pkgs/servers/tailscale
diff options
context:
space:
mode:
authorTyler W <19383474+leftl@users.noreply.github.com>2023-07-21 20:00:02 -0700
committerTyler W <19383474+leftl@users.noreply.github.com>2023-07-21 20:11:23 -0700
commit1397d49173a60f25fa7bb6376c97a0f76cce4c8b (patch)
treea9df057a712e586a17fca1233a87a5b6f3f20b5a /pkgs/servers/tailscale
parent30cb45886727f5e77d943a3d2d4dbaa29f78c75d (diff)
tailscale: 1.44.0 -> 1.46.0
Diffstat (limited to 'pkgs/servers/tailscale')
-rw-r--r--pkgs/servers/tailscale/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/tailscale/default.nix b/pkgs/servers/tailscale/default.nix
index 3af5e5b6f551e..740e72179e223 100644
--- a/pkgs/servers/tailscale/default.nix
+++ b/pkgs/servers/tailscale/default.nix
@@ -1,7 +1,7 @@
 { lib, stdenv, buildGoModule, fetchFromGitHub, makeWrapper, iptables, iproute2, procps, shadow, getent }:
 
 let
-  version = "1.44.0";
+  version = "1.46.0";
 in
 buildGoModule {
   pname = "tailscale";
@@ -11,9 +11,9 @@ buildGoModule {
     owner = "tailscale";
     repo = "tailscale";
     rev = "v${version}";
-    hash = "sha256-/SiQFkhVseLkjK7ePNzNyBs0r3XE3kHJ6CDTFjdCXec=";
+    hash = "sha256-JA4mTxVlDpD1U360mvLYQv2inZg6VnljAYtVc21Qmfc=";
   };
-  vendorHash = "sha256-fgCrmtJs1svFz0Xn7iwLNrbBNlcO6V0yqGPMY0+V1VQ=";
+  vendorHash = "sha256-yORh/jxBApu+XeAWczw7BLijNdF9DdoK8CfICBuCitU=";
 
   nativeBuildInputs = lib.optionals stdenv.isLinux [ makeWrapper ];