Merge pull request #142479 from 06kellyjac/headscale
This commit is contained in:
commit
c551281732
1 changed files with 32 additions and 9 deletions
|
@ -1,26 +1,49 @@
|
||||||
{ lib, buildGoModule, fetchFromGitHub }:
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "headscale";
|
pname = "headscale";
|
||||||
version = "0.9.2";
|
version = "0.10.5";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "juanfont";
|
owner = "juanfont";
|
||||||
repo = "headscale";
|
repo = "headscale";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-1YxcfSOGGdyUZyQdKSHUiK5/43Ki/QvHvIZ/Ai5Mq7E=";
|
sha256 = "sha256-cUDLqSMEw1SRMskHx3hhb/y7N7ZQEDEAZ40X5J53Bow=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-LJajQDk+r9Wt2t/kwNhsCoSlU+EjSNc1WT2vqtqg4LI=";
|
vendorSha256 = "sha256-t7S1jE76AFFIePrFtvrIQcId7hLeNIAm/eA9AVoFy5E=";
|
||||||
|
|
||||||
# Ldflags are same as build target in the project's Makefile
|
ldflags = [ "-s" "-w" "-X github.com/juanfont/headscale/cmd/headscale/cli.Version=v${version}" ];
|
||||||
# https://github.com/juanfont/headscale/blob/main/Makefile
|
|
||||||
ldflags = [ "-s" "-w" "-X main.version=v${version}" ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
installShellCompletion --cmd headscale \
|
||||||
|
--bash <($out/bin/headscale completion bash) \
|
||||||
|
--fish <($out/bin/headscale completion fish) \
|
||||||
|
--zsh <($out/bin/headscale completion zsh)
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "An implementation of the Tailscale coordination server";
|
|
||||||
homepage = "https://github.com/juanfont/headscale";
|
homepage = "https://github.com/juanfont/headscale";
|
||||||
|
description = "An open source, self-hosted implementation of the Tailscale control server";
|
||||||
|
longDescription = ''
|
||||||
|
Tailscale is a modern VPN built on top of Wireguard. It works like an
|
||||||
|
overlay network between the computers of your networks - using all kinds
|
||||||
|
of NAT traversal sorcery.
|
||||||
|
|
||||||
|
Everything in Tailscale is Open Source, except the GUI clients for
|
||||||
|
proprietary OS (Windows and macOS/iOS), and the
|
||||||
|
'coordination/control server'.
|
||||||
|
|
||||||
|
The control server works as an exchange point of Wireguard public keys for
|
||||||
|
the nodes in the Tailscale network. It also assigns the IP addresses of
|
||||||
|
the clients, creates the boundaries between each user, enables sharing
|
||||||
|
machines between users, and exposes the advertised routes of your nodes.
|
||||||
|
|
||||||
|
Headscale implements this coordination server.
|
||||||
|
'';
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ nkje ];
|
maintainers = with maintainers; [ nkje jk ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue