tailscale: 1.42.0 -> 1.44.0

- Remove rec expression, while here
This commit is contained in:
Ashish SHUKLA 2023-06-22 12:53:14 +02:00
parent 7b697d9698
commit a695c109a2
No known key found for this signature in database

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