Skip to content

Commit 66cd1c0

Browse files
authored
tailscale: add philiptaron as maintainer (#435405)
2 parents 569bf25 + 45a8692 commit 66cd1c0

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

pkgs/by-name/ta/tailscale/package.nix

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,9 @@
2222
tailscale-nginx-auth,
2323
}:
2424

25-
let
26-
version = "1.86.4";
27-
in
28-
buildGoModule {
25+
buildGoModule (finalAttrs: {
2926
pname = "tailscale";
30-
inherit version;
27+
version = "1.86.4";
3128

3229
outputs = [
3330
"out"
@@ -37,7 +34,7 @@ buildGoModule {
3734
src = fetchFromGitHub {
3835
owner = "tailscale";
3936
repo = "tailscale";
40-
tag = "v${version}";
37+
tag = "v${finalAttrs.version}";
4138
hash = "sha256-cYj04DtoYKejygz1Euir/6/Eq1M046nzzhqSfpTi0OE=";
4239
};
4340

@@ -70,8 +67,8 @@ buildGoModule {
7067
ldflags = [
7168
"-w"
7269
"-s"
73-
"-X tailscale.com/version.longStamp=${version}"
74-
"-X tailscale.com/version.shortStamp=${version}"
70+
"-X tailscale.com/version.longStamp=${finalAttrs.version}"
71+
"-X tailscale.com/version.shortStamp=${finalAttrs.version}"
7572
];
7673

7774
tags = [
@@ -223,15 +220,16 @@ buildGoModule {
223220
meta = {
224221
homepage = "https://tailscale.com";
225222
description = "Node agent for Tailscale, a mesh VPN built on WireGuard";
226-
changelog = "https://github.com/tailscale/tailscale/releases/tag/v${version}";
223+
changelog = "https://tailscale.com/changelog#client";
227224
license = lib.licenses.bsd3;
228225
mainProgram = "tailscale";
229226
maintainers = with lib.maintainers; [
230227
mbaillie
231228
jk
232229
mfrw
230+
philiptaron
233231
pyrox0
234232
ryan4yin
235233
];
236234
};
237-
}
235+
})

0 commit comments

Comments
 (0)