Merge pull request #239176 from wahjava/update-tailscale

tailscale: 1.42.0 -> 1.44.0
This commit is contained in:
Nick Cao 2023-06-23 09:07:08 +08:00 committed by GitHub
commit 6c302c01a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,19 @@
{ lib, stdenv, buildGoModule, fetchFromGitHub, makeWrapper, iptables, iproute2, procps, shadow, getent }:
buildGoModule rec {
let
version = "1.44.0";
in
buildGoModule {
pname = "tailscale";
version = "1.42.0";
inherit version;
src = fetchFromGitHub {
owner = "tailscale";
repo = "tailscale";
rev = "v${version}";
hash = "sha256-J7seajRoUOG/nm5iYuiv3lcS5vTT1XxZTxiSmf/TjGI=";
hash = "sha256-/SiQFkhVseLkjK7ePNzNyBs0r3XE3kHJ6CDTFjdCXec=";
};
vendorHash = "sha256-7L+dvS++UNfMVcPUCbK/xuBPwtrzW4RpZTtcl7VCwQs=";
vendorHash = "sha256-fgCrmtJs1svFz0Xn7iwLNrbBNlcO6V0yqGPMY0+V1VQ=";
nativeBuildInputs = lib.optionals stdenv.isLinux [ makeWrapper ];