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>
This commit is contained in:
Muhammad Falak R Wani 2023-08-20 12:18:14 +05:30
parent 3f141be99c
commit 069c21c203
No known key found for this signature in database
GPG key ID: D323A5E0174C86DD

View file

@ -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 ];