mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
headscale: 0.9.2 -> 0.10.5
This commit is contained in:
parent
a9efc15c16
commit
a1e1bcc5fc
@ -1,26 +1,49 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "headscale";
|
||||
version = "0.9.2";
|
||||
version = "0.10.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "juanfont";
|
||||
repo = "headscale";
|
||||
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
|
||||
# https://github.com/juanfont/headscale/blob/main/Makefile
|
||||
ldflags = [ "-s" "-w" "-X main.version=v${version}" ];
|
||||
ldflags = [ "-s" "-w" "-X github.com/juanfont/headscale/cmd/headscale/cli.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; {
|
||||
description = "An implementation of the Tailscale coordination server";
|
||||
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;
|
||||
maintainers = with maintainers; [ nkje ];
|
||||
maintainers = with maintainers; [ nkje jk ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user