Format nix with alejandra

Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
Kristoffer Dalby 2022-09-26 10:48:59 +02:00
parent d0e945fdd7
commit 804d9d8196
No known key found for this signature in database

View file

@ -6,18 +6,22 @@
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils, ... }:
let
headscaleVersion = if (self ? shortRev) then self.shortRev else "dev";
outputs = {
self,
nixpkgs,
flake-utils,
...
}: let
headscaleVersion =
if (self ? shortRev)
then self.shortRev
else "dev";
in
{
overlay = _: prev:
let
overlay = _: prev: let
pkgs = nixpkgs.legacyPackages.${prev.system};
in
rec {
headscale =
pkgs.buildGo119Module rec {
in rec {
headscale = pkgs.buildGo119Module rec {
pname = "headscale";
version = headscaleVersion;
src = pkgs.lib.cleanSource self;
@ -29,8 +33,7 @@
ldflags = ["-s" "-w" "-X github.com/juanfont/headscale/cmd/headscale/cli.Version=v${version}"];
};
golines =
pkgs.buildGoModule rec {
golines = pkgs.buildGoModule rec {
pname = "golines";
version = "0.9.0";
@ -69,8 +72,7 @@
# nativeBuildInputs = [ pkgs.installShellFiles ];
# };
protoc-gen-grpc-gateway =
pkgs.buildGoModule rec {
protoc-gen-grpc-gateway = pkgs.buildGoModule rec {
pname = "grpc-gateway";
version = "2.8.0";
@ -88,16 +90,17 @@
subPackages = ["protoc-gen-grpc-gateway" "protoc-gen-openapiv2"];
};
};
} // flake-utils.lib.eachDefaultSystem
(system:
let
}
// flake-utils.lib.eachDefaultSystem
(system: let
pkgs = import nixpkgs {
overlays = [self.overlay];
inherit system;
};
buildDeps = with pkgs; [git go_1_19 gnumake];
devDeps = with pkgs;
buildDeps ++ [
buildDeps
++ [
golangci-lint
golines
nodePackages.prettier
@ -111,7 +114,6 @@
clang-tools # clang-format
];
# Add entry to build a docker image with headscale
# caveat: only works on Linux
#
@ -124,8 +126,7 @@
contents = [pkgs.headscale];
config.Entrypoint = [(pkgs.headscale + "/bin/headscale")];
};
in
rec {
in rec {
overlays.default = self.overlay;
# `nix develop`
@ -146,7 +147,8 @@
defaultApp = apps.headscale;
checks = {
format = pkgs.runCommand "check-format"
format =
pkgs.runCommand "check-format"
{
buildInputs = with pkgs; [
gnumake
@ -164,7 +166,5 @@
${pkgs.clang-tools}/bin/clang-format -style="{BasedOnStyle: Google, IndentWidth: 4, AlignConsecutiveDeclarations: true, AlignConsecutiveAssignments: true, ColumnLimit: 0}" -i ${./.}
'';
};
});
}