b6f2ab0a42
GitOrigin-RevId: 253aecf69ed7595aaefabde779aa6449195bebb7
26 lines
770 B
Nix
26 lines
770 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "headscale";
|
|
version = "0.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "juanfont";
|
|
repo = "headscale";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-pzsbCxJ3N30XpjF//02SV6URhA6f6Wz8a6HvGxsK7M4=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-ususDOF/LznhK4EInHE7J/ItMjziGfP9Gn8/Q5wd78g=";
|
|
|
|
# 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}" ];
|
|
|
|
meta = with lib; {
|
|
description = "An implementation of the Tailscale coordination server";
|
|
homepage = "https://github.com/juanfont/headscale";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ nkje ];
|
|
};
|
|
}
|