Format nix with alejandra
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
parent
d0e945fdd7
commit
804d9d8196
1 changed files with 153 additions and 153 deletions
64
flake.nix
64
flake.nix
|
@ -6,18 +6,22 @@
|
||||||
flake-utils.url = "github:numtide/flake-utils";
|
flake-utils.url = "github:numtide/flake-utils";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, flake-utils, ... }:
|
outputs = {
|
||||||
let
|
self,
|
||||||
headscaleVersion = if (self ? shortRev) then self.shortRev else "dev";
|
nixpkgs,
|
||||||
|
flake-utils,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
headscaleVersion =
|
||||||
|
if (self ? shortRev)
|
||||||
|
then self.shortRev
|
||||||
|
else "dev";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
overlay = _: prev:
|
overlay = _: prev: let
|
||||||
let
|
|
||||||
pkgs = nixpkgs.legacyPackages.${prev.system};
|
pkgs = nixpkgs.legacyPackages.${prev.system};
|
||||||
in
|
in rec {
|
||||||
rec {
|
headscale = pkgs.buildGo119Module rec {
|
||||||
headscale =
|
|
||||||
pkgs.buildGo119Module rec {
|
|
||||||
pname = "headscale";
|
pname = "headscale";
|
||||||
version = headscaleVersion;
|
version = headscaleVersion;
|
||||||
src = pkgs.lib.cleanSource self;
|
src = pkgs.lib.cleanSource self;
|
||||||
|
@ -26,11 +30,10 @@
|
||||||
# update this if you have a mismatch after doing a change to thos files.
|
# update this if you have a mismatch after doing a change to thos files.
|
||||||
vendorSha256 = "sha256-DosFCSiQ5FURbIrt4NcPGkExc84t2MGMqe9XLxNHdIM=";
|
vendorSha256 = "sha256-DosFCSiQ5FURbIrt4NcPGkExc84t2MGMqe9XLxNHdIM=";
|
||||||
|
|
||||||
ldflags = [ "-s" "-w" "-X github.com/juanfont/headscale/cmd/headscale/cli.Version=v${version}" ];
|
ldflags = ["-s" "-w" "-X github.com/juanfont/headscale/cmd/headscale/cli.Version=v${version}"];
|
||||||
};
|
};
|
||||||
|
|
||||||
golines =
|
golines = pkgs.buildGoModule rec {
|
||||||
pkgs.buildGoModule rec {
|
|
||||||
pname = "golines";
|
pname = "golines";
|
||||||
version = "0.9.0";
|
version = "0.9.0";
|
||||||
|
|
||||||
|
@ -43,7 +46,7 @@
|
||||||
|
|
||||||
vendorSha256 = "sha256-sEzWUeVk5GB0H41wrp12P8sBWRjg0FHUX6ABDEEBqK8=";
|
vendorSha256 = "sha256-sEzWUeVk5GB0H41wrp12P8sBWRjg0FHUX6ABDEEBqK8=";
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgs.installShellFiles ];
|
nativeBuildInputs = [pkgs.installShellFiles];
|
||||||
};
|
};
|
||||||
|
|
||||||
golangci-lint = prev.golangci-lint.override {
|
golangci-lint = prev.golangci-lint.override {
|
||||||
|
@ -69,8 +72,7 @@
|
||||||
# nativeBuildInputs = [ pkgs.installShellFiles ];
|
# nativeBuildInputs = [ pkgs.installShellFiles ];
|
||||||
# };
|
# };
|
||||||
|
|
||||||
protoc-gen-grpc-gateway =
|
protoc-gen-grpc-gateway = pkgs.buildGoModule rec {
|
||||||
pkgs.buildGoModule rec {
|
|
||||||
pname = "grpc-gateway";
|
pname = "grpc-gateway";
|
||||||
version = "2.8.0";
|
version = "2.8.0";
|
||||||
|
|
||||||
|
@ -83,21 +85,22 @@
|
||||||
|
|
||||||
vendorSha256 = "sha256-AW2Gn/mlZyLMwF+NpK59eiOmQrYWW/9HPjbunYc9Ij4=";
|
vendorSha256 = "sha256-AW2Gn/mlZyLMwF+NpK59eiOmQrYWW/9HPjbunYc9Ij4=";
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgs.installShellFiles ];
|
nativeBuildInputs = [pkgs.installShellFiles];
|
||||||
|
|
||||||
subPackages = [ "protoc-gen-grpc-gateway" "protoc-gen-openapiv2" ];
|
subPackages = ["protoc-gen-grpc-gateway" "protoc-gen-openapiv2"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
} // flake-utils.lib.eachDefaultSystem
|
}
|
||||||
(system:
|
// flake-utils.lib.eachDefaultSystem
|
||||||
let
|
(system: let
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
overlays = [ self.overlay ];
|
overlays = [self.overlay];
|
||||||
inherit system;
|
inherit system;
|
||||||
};
|
};
|
||||||
buildDeps = with pkgs; [ git go_1_19 gnumake ];
|
buildDeps = with pkgs; [git go_1_19 gnumake];
|
||||||
devDeps = with pkgs;
|
devDeps = with pkgs;
|
||||||
buildDeps ++ [
|
buildDeps
|
||||||
|
++ [
|
||||||
golangci-lint
|
golangci-lint
|
||||||
golines
|
golines
|
||||||
nodePackages.prettier
|
nodePackages.prettier
|
||||||
|
@ -111,7 +114,6 @@
|
||||||
clang-tools # clang-format
|
clang-tools # clang-format
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
# Add entry to build a docker image with headscale
|
# Add entry to build a docker image with headscale
|
||||||
# caveat: only works on Linux
|
# caveat: only works on Linux
|
||||||
#
|
#
|
||||||
|
@ -121,15 +123,14 @@
|
||||||
headscale-docker = pkgs.dockerTools.buildLayeredImage {
|
headscale-docker = pkgs.dockerTools.buildLayeredImage {
|
||||||
name = "headscale";
|
name = "headscale";
|
||||||
tag = headscaleVersion;
|
tag = headscaleVersion;
|
||||||
contents = [ pkgs.headscale ];
|
contents = [pkgs.headscale];
|
||||||
config.Entrypoint = [ (pkgs.headscale + "/bin/headscale") ];
|
config.Entrypoint = [(pkgs.headscale + "/bin/headscale")];
|
||||||
};
|
};
|
||||||
in
|
in rec {
|
||||||
rec {
|
|
||||||
overlays.default = self.overlay;
|
overlays.default = self.overlay;
|
||||||
|
|
||||||
# `nix develop`
|
# `nix develop`
|
||||||
devShell = pkgs.mkShell { buildInputs = devDeps; };
|
devShell = pkgs.mkShell {buildInputs = devDeps;};
|
||||||
|
|
||||||
# `nix build`
|
# `nix build`
|
||||||
packages = with pkgs; {
|
packages = with pkgs; {
|
||||||
|
@ -146,7 +147,8 @@
|
||||||
defaultApp = apps.headscale;
|
defaultApp = apps.headscale;
|
||||||
|
|
||||||
checks = {
|
checks = {
|
||||||
format = pkgs.runCommand "check-format"
|
format =
|
||||||
|
pkgs.runCommand "check-format"
|
||||||
{
|
{
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
gnumake
|
gnumake
|
||||||
|
@ -164,7 +166,5 @@
|
||||||
${pkgs.clang-tools}/bin/clang-format -style="{BasedOnStyle: Google, IndentWidth: 4, AlignConsecutiveDeclarations: true, AlignConsecutiveAssignments: true, ColumnLimit: 0}" -i ${./.}
|
${pkgs.clang-tools}/bin/clang-format -style="{BasedOnStyle: Google, IndentWidth: 4, AlignConsecutiveDeclarations: true, AlignConsecutiveAssignments: true, ColumnLimit: 0}" -i ${./.}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue