about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/tailscale/default.nix
blob: 9f0a8de4ef680c5a69d3e6cd54daad1f74c1ba27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ lib, buildGoModule, fetchFromGitHub, makeWrapper, iptables, iproute }:

buildGoModule rec {
  pname = "tailscale";
  version = "0.97-219";

  src = fetchFromGitHub {
    owner = "tailscale";
    repo = "tailscale";
    # Tailscale uses "git describe" as version numbers. v0.97-219
    # means "tag v0.97 plus 219 commits", which is what this rev is.
    rev = "afbfe4f217a2a202f0eefe943c7c1ef648311339";
    sha256 = "1an897ys3gycdmclqd0yqs9f7q88zxqxyc6r0gcgs4678svxhb68";
  };

  nativeBuildInputs = [ makeWrapper ];

  CGO_ENABLED = 0;

  goPackagePath = "tailscale.com";
  overrideModAttrs = (_: {
    preBuild = ''
    rm ipn/e2e_test.go
    rm control/controlclient/auto_test.go
    rm control/controlclient/direct_test.go
    '';
  });
  vendorSha256 = "1v90lbwgrc2m4kvpglf2jykrm8rry3pbhqqbc3mcysrzmqlw84yl";
  subPackages = [ "cmd/tailscale" "cmd/tailscaled" ];

  postInstall = ''
    wrapProgram $out/bin/tailscaled --prefix PATH : ${
      lib.makeBinPath [ iproute iptables ]
    }
  '';

  meta = with lib; {
    homepage = "https://tailscale.com";
    description = "The node agent for Tailscale, a mesh VPN built on WireGuard";
    platforms = platforms.linux;
    license = licenses.bsd3;
    maintainers = with maintainers; [ danderson mbaillie ];
  };
}