2022-03-08 00:51:38 +08:00
|
|
|
{
|
|
|
|
description = "headscale - Open Source Tailscale Control server";
|
|
|
|
|
|
|
|
inputs = {
|
2023-04-07 18:34:52 +08:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
2022-03-08 00:51:38 +08:00
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
};
|
|
|
|
|
2023-05-26 18:26:34 +08:00
|
|
|
outputs = {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
|
|
|
flake-utils,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
headscaleVersion =
|
|
|
|
if (self ? shortRev)
|
|
|
|
then self.shortRev
|
|
|
|
else "dev";
|
|
|
|
in
|
2022-03-08 00:51:38 +08:00
|
|
|
{
|
2023-05-26 18:26:34 +08:00
|
|
|
overlay = _: prev: let
|
|
|
|
pkgs = nixpkgs.legacyPackages.${prev.system};
|
2024-09-04 13:55:16 +08:00
|
|
|
buildGo = pkgs.buildGo123Module;
|
2023-05-26 18:26:34 +08:00
|
|
|
in rec {
|
2024-09-04 13:55:16 +08:00
|
|
|
headscale = buildGo rec {
|
2023-05-26 18:26:34 +08:00
|
|
|
pname = "headscale";
|
|
|
|
version = headscaleVersion;
|
|
|
|
src = pkgs.lib.cleanSource self;
|
2022-11-04 18:26:33 +08:00
|
|
|
|
2023-05-26 18:26:34 +08:00
|
|
|
# Only run unit tests when testing a build
|
|
|
|
checkFlags = ["-short"];
|
2022-09-26 16:48:59 +08:00
|
|
|
|
2023-05-26 18:26:34 +08:00
|
|
|
# When updating go.mod or go.sum, a new sha will need to be calculated,
|
2024-05-24 16:15:34 +08:00
|
|
|
# update this if you have a mismatch after doing a change to thos files.
|
Redo OIDC configuration (#2020)
expand user, add claims to user
This commit expands the user table with additional fields that
can be retrieved from OIDC providers (and other places) and
uses this data in various tailscale response objects if it is
available.
This is the beginning of implementing
https://docs.google.com/document/d/1X85PMxIaVWDF6T_UPji3OeeUqVBcGj_uHRM5CI-AwlY/edit
trying to make OIDC more coherant and maintainable in addition
to giving the user a better experience and integration with a
provider.
remove usernames in magic dns, normalisation of emails
this commit removes the option to have usernames as part of MagicDNS
domains and headscale will now align with Tailscale, where there is a
root domain, and the machine name.
In addition, the various normalisation functions for dns names has been
made lighter not caring about username and special character that wont
occur.
Email are no longer normalised as part of the policy processing.
untagle oidc and regcache, use typed cache
This commits stops reusing the registration cache for oidc
purposes and switches the cache to be types and not use any
allowing the removal of a bunch of casting.
try to make reauth/register branches clearer in oidc
Currently there was a function that did a bunch of stuff,
finding the machine key, trying to find the node, reauthing
the node, returning some status, and it was called validate
which was very confusing.
This commit tries to split this into what to do if the node
exists, if it needs to register etc.
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
2024-10-02 20:50:17 +08:00
|
|
|
vendorHash = "sha256-SDJSFji6498WI9bJLmY62VGt21TtD2GxrxRAWyYyr0c=";
|
2022-03-08 01:18:41 +08:00
|
|
|
|
2024-02-12 16:11:33 +08:00
|
|
|
subPackages = ["cmd/headscale"];
|
2022-03-18 02:07:26 +08:00
|
|
|
|
2024-02-12 16:11:33 +08:00
|
|
|
ldflags = ["-s" "-w" "-X github.com/juanfont/headscale/cmd/headscale/cli.Version=v${version}"];
|
2023-05-26 18:26:34 +08:00
|
|
|
};
|
2022-03-08 00:51:38 +08:00
|
|
|
|
2024-09-04 13:55:16 +08:00
|
|
|
protoc-gen-grpc-gateway = buildGo rec {
|
2023-05-26 18:26:34 +08:00
|
|
|
pname = "grpc-gateway";
|
2024-09-04 13:55:16 +08:00
|
|
|
version = "2.22.0";
|
2022-09-26 16:48:59 +08:00
|
|
|
|
2023-05-26 18:26:34 +08:00
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "grpc-ecosystem";
|
|
|
|
repo = "grpc-gateway";
|
|
|
|
rev = "v${version}";
|
2024-09-04 13:55:16 +08:00
|
|
|
sha256 = "sha256-I1w3gfV06J8xG1xJ+XuMIGkV2/Ofszo7SCC+z4Xb6l4=";
|
2022-03-18 02:07:26 +08:00
|
|
|
};
|
2023-05-26 18:26:34 +08:00
|
|
|
|
2024-09-04 13:55:16 +08:00
|
|
|
vendorHash = "sha256-S4hcD5/BSGxM2qdJHMxOkxsJ5+Ks6m4lKHSS9+yZ17c=";
|
2023-05-26 18:26:34 +08:00
|
|
|
|
|
|
|
nativeBuildInputs = [pkgs.installShellFiles];
|
|
|
|
|
|
|
|
subPackages = ["protoc-gen-grpc-gateway" "protoc-gen-openapiv2"];
|
2022-09-26 16:48:59 +08:00
|
|
|
};
|
2024-09-04 13:55:16 +08:00
|
|
|
|
2024-09-09 20:29:09 +08:00
|
|
|
# Upstream does not override buildGoModule properly,
|
|
|
|
# importing a specific module, so comment out for now.
|
|
|
|
# golangci-lint = prev.golangci-lint.override {
|
|
|
|
# buildGoModule = buildGo;
|
|
|
|
# };
|
2024-09-04 13:55:16 +08:00
|
|
|
|
|
|
|
goreleaser = prev.goreleaser.override {
|
|
|
|
buildGoModule = buildGo;
|
|
|
|
};
|
|
|
|
|
|
|
|
gotestsum = prev.gotestsum.override {
|
|
|
|
buildGoModule = buildGo;
|
|
|
|
};
|
|
|
|
|
|
|
|
gotests = prev.gotests.override {
|
|
|
|
buildGoModule = buildGo;
|
|
|
|
};
|
|
|
|
|
|
|
|
gofumpt = prev.gofumpt.override {
|
|
|
|
buildGoModule = buildGo;
|
|
|
|
};
|
2023-05-26 18:26:34 +08:00
|
|
|
};
|
2022-09-26 16:48:59 +08:00
|
|
|
}
|
|
|
|
// flake-utils.lib.eachDefaultSystem
|
2023-05-26 18:26:34 +08:00
|
|
|
(system: let
|
|
|
|
pkgs = import nixpkgs {
|
|
|
|
overlays = [self.overlay];
|
|
|
|
inherit system;
|
|
|
|
};
|
2024-08-23 21:28:54 +08:00
|
|
|
buildDeps = with pkgs; [git go_1_23 gnumake];
|
2023-05-26 18:26:34 +08:00
|
|
|
devDeps = with pkgs;
|
|
|
|
buildDeps
|
|
|
|
++ [
|
|
|
|
golangci-lint
|
|
|
|
golines
|
|
|
|
nodePackages.prettier
|
|
|
|
goreleaser
|
|
|
|
nfpm
|
|
|
|
gotestsum
|
|
|
|
gotests
|
2024-07-17 19:12:02 +08:00
|
|
|
gofumpt
|
2023-06-22 16:01:17 +08:00
|
|
|
ksh
|
2024-02-12 21:53:07 +08:00
|
|
|
ko
|
2024-03-03 05:36:38 +08:00
|
|
|
yq-go
|
|
|
|
ripgrep
|
2023-05-26 18:26:34 +08:00
|
|
|
|
|
|
|
# 'dot' is needed for pprof graphs
|
|
|
|
# go tool pprof -http=: <source>
|
|
|
|
graphviz
|
|
|
|
|
|
|
|
# Protobuf dependencies
|
|
|
|
protobuf
|
|
|
|
protoc-gen-go
|
|
|
|
protoc-gen-go-grpc
|
|
|
|
protoc-gen-grpc-gateway
|
|
|
|
buf
|
|
|
|
clang-tools # clang-format
|
|
|
|
];
|
|
|
|
|
|
|
|
# Add entry to build a docker image with headscale
|
|
|
|
# caveat: only works on Linux
|
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
# nix build .#headscale-docker
|
|
|
|
# docker load < result
|
|
|
|
headscale-docker = pkgs.dockerTools.buildLayeredImage {
|
|
|
|
name = "headscale";
|
|
|
|
tag = headscaleVersion;
|
|
|
|
contents = [pkgs.headscale];
|
|
|
|
config.Entrypoint = [(pkgs.headscale + "/bin/headscale")];
|
|
|
|
};
|
|
|
|
in rec {
|
|
|
|
# `nix develop`
|
|
|
|
devShell = pkgs.mkShell {
|
2024-02-12 16:11:33 +08:00
|
|
|
buildInputs =
|
|
|
|
devDeps
|
|
|
|
++ [
|
|
|
|
(pkgs.writeShellScriptBin
|
|
|
|
"nix-vendor-sri"
|
|
|
|
''
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
OUT=$(mktemp -d -t nar-hash-XXXXXX)
|
|
|
|
rm -rf "$OUT"
|
|
|
|
|
|
|
|
go mod vendor -o "$OUT"
|
|
|
|
go run tailscale.com/cmd/nardump --sri "$OUT"
|
|
|
|
rm -rf "$OUT"
|
|
|
|
'')
|
|
|
|
|
|
|
|
(pkgs.writeShellScriptBin
|
|
|
|
"go-mod-update-all"
|
|
|
|
''
|
|
|
|
cat go.mod | ${pkgs.silver-searcher}/bin/ag "\t" | ${pkgs.silver-searcher}/bin/ag -v indirect | ${pkgs.gawk}/bin/awk '{print $1}' | ${pkgs.findutils}/bin/xargs go get -u
|
|
|
|
go mod tidy
|
|
|
|
'')
|
|
|
|
];
|
2023-05-26 18:26:34 +08:00
|
|
|
|
|
|
|
shellHook = ''
|
|
|
|
export PATH="$PWD/result/bin:$PATH"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
# `nix build`
|
|
|
|
packages = with pkgs; {
|
|
|
|
inherit headscale;
|
|
|
|
inherit headscale-docker;
|
|
|
|
};
|
|
|
|
defaultPackage = pkgs.headscale;
|
|
|
|
|
|
|
|
# `nix run`
|
|
|
|
apps.headscale = flake-utils.lib.mkApp {
|
|
|
|
drv = packages.headscale;
|
|
|
|
};
|
|
|
|
apps.default = apps.headscale;
|
|
|
|
|
|
|
|
checks = {
|
|
|
|
format =
|
|
|
|
pkgs.runCommand "check-format"
|
|
|
|
{
|
|
|
|
buildInputs = with pkgs; [
|
|
|
|
gnumake
|
|
|
|
nixpkgs-fmt
|
|
|
|
golangci-lint
|
|
|
|
nodePackages.prettier
|
|
|
|
golines
|
|
|
|
clang-tools
|
|
|
|
];
|
|
|
|
} ''
|
|
|
|
${pkgs.nixpkgs-fmt}/bin/nixpkgs-fmt ${./.}
|
|
|
|
${pkgs.golangci-lint}/bin/golangci-lint run --fix --timeout 10m
|
|
|
|
${pkgs.nodePackages.prettier}/bin/prettier --write '**/**.{ts,js,md,yaml,yml,sass,css,scss,html}'
|
|
|
|
${pkgs.golines}/bin/golines --max-len=88 --base-formatter=gofumpt -w ${./.}
|
|
|
|
${pkgs.clang-tools}/bin/clang-format -style="{BasedOnStyle: Google, IndentWidth: 4, AlignConsecutiveDeclarations: true, AlignConsecutiveAssignments: true, ColumnLimit: 0}" -i ${./.}
|
2022-09-26 16:48:59 +08:00
|
|
|
'';
|
2023-05-26 18:26:34 +08:00
|
|
|
};
|
|
|
|
});
|
2022-03-08 00:51:38 +08:00
|
|
|
}
|