2022-12-24 20:07:41 +00:00
|
|
|
# flake.nix describes a Nix source repository that provides
|
|
|
|
# development builds of Tailscale and the fork of the Go compiler
|
|
|
|
# toolchain that Tailscale maintains. It also provides a development
|
|
|
|
# environment for working on tailscale, for use with "nix develop".
|
|
|
|
#
|
|
|
|
# For more information about this and why this file is useful, see:
|
|
|
|
# https://nixos.wiki/wiki/Flakes
|
|
|
|
#
|
|
|
|
# Also look into direnv: https://direnv.net/, this can make it so that you can
|
|
|
|
# automatically get your environment set up when you change folders into the
|
|
|
|
# project.
|
|
|
|
#
|
|
|
|
# WARNING: currently, the packages provided by this flake are brittle,
|
|
|
|
# and importing this flake into your own Nix configs is likely to
|
|
|
|
# leave you with broken builds periodically.
|
|
|
|
#
|
|
|
|
# The issue is that building Tailscale binaries uses the buildGoModule
|
|
|
|
# helper from nixpkgs. This helper demands to know the content hash of
|
|
|
|
# all of the Go dependencies of this repo, in the form of a Nix SRI
|
|
|
|
# hash. This hash isn't automatically kept in sync with changes made
|
|
|
|
# to go.mod yet, and so every time we update go.mod while hacking on
|
|
|
|
# Tailscale, this flake ends up with a broken build due to hash
|
|
|
|
# mismatches.
|
|
|
|
#
|
|
|
|
# Right now, this flake is intended for use by Tailscale developers,
|
|
|
|
# who are aware of this mismatch and willing to live with it. At some
|
|
|
|
# point, we'll add automation to keep the hashes more in sync, at
|
|
|
|
# which point this caveat should go away.
|
|
|
|
#
|
|
|
|
# See https://github.com/tailscale/tailscale/issues/6845 for tracking
|
|
|
|
# how to fix this mismatch.
|
|
|
|
{
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
# Used by shell.nix as a compat shim.
|
|
|
|
flake-compat = {
|
|
|
|
url = "github:edolstra/flake-compat";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = { self, nixpkgs, flake-utils, flake-compat }: let
|
|
|
|
# tailscaleRev is the git commit at which this flake was imported,
|
|
|
|
# or the empty string when building from a local checkout of the
|
|
|
|
# tailscale repo.
|
2023-11-21 17:49:34 +00:00
|
|
|
tailscaleRev = self.rev or "";
|
2022-12-25 01:57:44 +00:00
|
|
|
# tailscale takes a nixpkgs package set, and builds Tailscale from
|
|
|
|
# the same commit as this flake. IOW, it provides "tailscale built
|
|
|
|
# from HEAD", where HEAD is "whatever commit you imported the
|
|
|
|
# flake at".
|
2022-12-24 20:07:41 +00:00
|
|
|
#
|
|
|
|
# This is currently unfortunately brittle, because we have to
|
2023-11-24 04:28:37 +00:00
|
|
|
# specify vendorHash, and that sha changes any time we alter
|
2022-12-24 20:07:41 +00:00
|
|
|
# go.mod. We don't want to force a nix dependency on everyone
|
|
|
|
# hacking on Tailscale, so this flake is likely to have broken
|
2023-02-03 03:37:32 +00:00
|
|
|
# builds periodically until someone comes through and manually
|
2022-12-24 20:07:41 +00:00
|
|
|
# fixes them up. I sure wish there was a way to express "please
|
2023-11-24 04:28:37 +00:00
|
|
|
# just trust the local go.mod, vendorHash has no benefit here",
|
2022-12-24 20:07:41 +00:00
|
|
|
# but alas.
|
|
|
|
#
|
|
|
|
# So really, this flake is for tailscale devs to dogfood with, if
|
|
|
|
# you're an end user you should be prepared for this flake to not
|
|
|
|
# build periodically.
|
2024-02-12 04:08:49 +00:00
|
|
|
tailscale = pkgs: pkgs.buildGo122Module rec {
|
2022-12-25 01:57:44 +00:00
|
|
|
name = "tailscale";
|
2022-12-24 20:07:41 +00:00
|
|
|
|
|
|
|
src = ./.;
|
2023-11-24 04:28:37 +00:00
|
|
|
vendorHash = pkgs.lib.fileContents ./go.mod.sri;
|
2023-10-27 15:28:11 +01:00
|
|
|
nativeBuildInputs = pkgs.lib.optionals pkgs.stdenv.isLinux [ pkgs.makeWrapper ];
|
2023-11-21 17:49:34 +00:00
|
|
|
ldflags = ["-X tailscale.com/version.gitCommitStamp=${tailscaleRev}"];
|
2022-12-24 20:07:41 +00:00
|
|
|
CGO_ENABLED = 0;
|
|
|
|
subPackages = [ "cmd/tailscale" "cmd/tailscaled" ];
|
|
|
|
doCheck = false;
|
2023-10-27 15:28:11 +01:00
|
|
|
|
|
|
|
# NOTE: We strip the ${PORT} and $FLAGS because they are unset in the
|
|
|
|
# environment and cause issues (specifically the unset PORT). At some
|
|
|
|
# point, there should be a NixOS module that allows configuration of these
|
|
|
|
# things, but for now, we hardcode the default of port 41641 (taken from
|
|
|
|
# ./cmd/tailscaled/tailscaled.defaults).
|
2022-12-24 20:07:41 +00:00
|
|
|
postInstall = pkgs.lib.optionalString pkgs.stdenv.isLinux ''
|
|
|
|
wrapProgram $out/bin/tailscaled --prefix PATH : ${pkgs.lib.makeBinPath [ pkgs.iproute2 pkgs.iptables pkgs.getent pkgs.shadow ]}
|
|
|
|
wrapProgram $out/bin/tailscale --suffix PATH : ${pkgs.lib.makeBinPath [ pkgs.procps ]}
|
|
|
|
|
2023-10-27 15:28:11 +01:00
|
|
|
sed -i \
|
|
|
|
-e "s#/usr/sbin#$out/bin#" \
|
|
|
|
-e "/^EnvironmentFile/d" \
|
|
|
|
-e 's/''${PORT}/41641/' \
|
|
|
|
-e 's/$FLAGS//' \
|
|
|
|
./cmd/tailscaled/tailscaled.service
|
|
|
|
|
2022-12-24 20:07:41 +00:00
|
|
|
install -D -m0444 -t $out/lib/systemd/system ./cmd/tailscaled/tailscaled.service
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
# This whole blob makes the tailscale package available for all
|
|
|
|
# OS/CPU combos that nix supports, as well as a dev shell so that
|
|
|
|
# "nix develop" and "nix-shell" give you a dev env.
|
|
|
|
flakeForSystem = nixpkgs: system: let
|
2023-02-03 03:37:32 +00:00
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
2022-12-25 01:57:44 +00:00
|
|
|
ts = tailscale pkgs;
|
2022-12-24 20:07:41 +00:00
|
|
|
in {
|
|
|
|
packages = {
|
2023-10-27 15:28:11 +01:00
|
|
|
default = ts;
|
2022-12-25 01:57:44 +00:00
|
|
|
tailscale = ts;
|
2022-12-24 20:07:41 +00:00
|
|
|
};
|
|
|
|
devShell = pkgs.mkShell {
|
2023-02-03 03:37:32 +00:00
|
|
|
packages = with pkgs; [
|
2022-12-24 23:05:40 +00:00
|
|
|
curl
|
2022-12-24 20:07:41 +00:00
|
|
|
git
|
|
|
|
gopls
|
2022-12-24 23:05:40 +00:00
|
|
|
gotools
|
2022-12-24 20:07:41 +00:00
|
|
|
graphviz
|
2022-12-24 23:05:40 +00:00
|
|
|
perl
|
2024-02-12 04:08:49 +00:00
|
|
|
go_1_22
|
2023-03-03 21:28:23 +00:00
|
|
|
yarn
|
2022-12-24 20:07:41 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
flake-utils.lib.eachDefaultSystem (system: flakeForSystem nixpkgs system);
|
|
|
|
}
|
2024-08-15 05:24:33 +01:00
|
|
|
# nix-direnv cache busting line: sha256-M5e5dE1gGW3ly94r3SxCsBmVwbBmhVtaVDW691vxG/8=
|