2024-01-24 02:06:40 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
2024-05-12 21:20:40 +00:00
|
|
|
, fetchpatch
|
2024-01-24 02:06:40 +00:00
|
|
|
, makeWrapper
|
|
|
|
, getent
|
|
|
|
, iproute2
|
|
|
|
, iptables
|
|
|
|
, shadow
|
|
|
|
, procps
|
|
|
|
, nixosTests
|
2024-06-14 19:15:11 +00:00
|
|
|
, installShellFiles
|
2024-07-04 13:10:45 +00:00
|
|
|
, tailscale-nginx-auth
|
2024-01-24 02:06:40 +00:00
|
|
|
}:
|
2022-04-29 08:27:02 +00:00
|
|
|
|
2023-06-22 10:53:14 +00:00
|
|
|
let
|
2024-08-20 03:15:29 +00:00
|
|
|
version = "1.72.0";
|
2023-06-22 10:53:14 +00:00
|
|
|
in
|
2023-08-23 01:13:48 +00:00
|
|
|
buildGoModule {
|
2020-03-08 06:47:50 +00:00
|
|
|
pname = "tailscale";
|
2023-06-22 10:53:14 +00:00
|
|
|
inherit version;
|
2020-03-08 06:47:50 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tailscale";
|
|
|
|
repo = "tailscale";
|
2020-07-19 20:23:36 +00:00
|
|
|
rev = "v${version}";
|
2024-08-20 03:15:29 +00:00
|
|
|
hash = "sha256-PFXXd5ToBbvuGl+u4nEAHy1F696lxHD3PrPJ3Tpb+eg=";
|
2020-03-08 06:47:50 +00:00
|
|
|
};
|
2024-05-12 21:20:40 +00:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
# Fix "tailscale ssh" when built with ts_include_cli tag
|
|
|
|
# https://github.com/tailscale/tailscale/pull/12109
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/tailscale/tailscale/commit/325ca13c4549c1af58273330744d160602218af9.patch";
|
|
|
|
hash = "sha256-SMwqZiGNVflhPShlHP+7Gmn0v4b6Gr4VZGIF/oJAY8M=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2024-08-20 03:15:29 +00:00
|
|
|
vendorHash = "sha256-M5e5dE1gGW3ly94r3SxCsBmVwbBmhVtaVDW691vxG/8=";
|
2020-03-08 06:47:50 +00:00
|
|
|
|
2024-06-14 19:15:11 +00:00
|
|
|
nativeBuildInputs = lib.optionals stdenv.isLinux [ makeWrapper ] ++ [ installShellFiles ];
|
2020-03-08 06:47:50 +00:00
|
|
|
|
|
|
|
CGO_ENABLED = 0;
|
|
|
|
|
2024-04-22 11:20:51 +00:00
|
|
|
subPackages = [ "cmd/tailscaled" ];
|
2020-03-08 06:47:50 +00:00
|
|
|
|
2023-03-19 11:18:16 +00:00
|
|
|
ldflags = [
|
|
|
|
"-w"
|
|
|
|
"-s"
|
|
|
|
"-X tailscale.com/version.longStamp=${version}"
|
|
|
|
"-X tailscale.com/version.shortStamp=${version}"
|
|
|
|
];
|
2020-10-22 20:47:18 +00:00
|
|
|
|
2024-04-22 11:20:51 +00:00
|
|
|
tags = [
|
|
|
|
"ts_include_cli"
|
|
|
|
];
|
|
|
|
|
2022-04-29 08:27:02 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2024-04-22 11:20:51 +00:00
|
|
|
postInstall = ''
|
|
|
|
ln -s $out/bin/tailscaled $out/bin/tailscale
|
|
|
|
'' + lib.optionalString stdenv.isLinux ''
|
|
|
|
wrapProgram $out/bin/tailscaled \
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ iproute2 iptables getent shadow ]} \
|
|
|
|
--suffix PATH : ${lib.makeBinPath [ procps ]}
|
2024-07-17 21:25:28 +00:00
|
|
|
sed -i -e "s#/usr/sbin#$out/bin#" -e "/^EnvironmentFile/d" ./cmd/tailscaled/tailscaled.service
|
|
|
|
install -D -m0444 -t $out/lib/systemd/system ./cmd/tailscaled/tailscaled.service
|
|
|
|
'' + lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
2024-06-14 19:15:11 +00:00
|
|
|
local INSTALL="$out/bin/tailscale"
|
|
|
|
installShellCompletion --cmd tailscale \
|
|
|
|
--bash <($out/bin/tailscale completion bash) \
|
|
|
|
--fish <($out/bin/tailscale completion fish) \
|
|
|
|
--zsh <($out/bin/tailscale completion zsh)
|
2020-03-08 06:47:50 +00:00
|
|
|
'';
|
|
|
|
|
2024-01-24 02:06:40 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) headscale;
|
2024-07-04 13:10:45 +00:00
|
|
|
inherit tailscale-nginx-auth;
|
2024-01-24 02:06:40 +00:00
|
|
|
};
|
|
|
|
|
2020-03-08 06:47:50 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://tailscale.com";
|
|
|
|
description = "Node agent for Tailscale, a mesh VPN built on WireGuard";
|
2024-07-17 21:04:21 +00:00
|
|
|
changelog = "https://github.com/tailscale/tailscale/releases/tag/v${version}";
|
2020-03-08 06:47:50 +00:00
|
|
|
license = licenses.bsd3;
|
2023-08-14 17:52:15 +00:00
|
|
|
mainProgram = "tailscale";
|
2024-07-17 21:04:21 +00:00
|
|
|
maintainers = with maintainers; [ mbaillie jk mfrw pyrox0 ];
|
2020-03-08 06:47:50 +00:00
|
|
|
};
|
2020-06-04 04:23:29 +00:00
|
|
|
}
|