-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathflake.nix
113 lines (104 loc) · 3.21 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
description = "Asynchronous Nix post-build-hook";
inputs = {
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
devshell = {
url = "github:numtide/devshell";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
};
outputs = { self, nixpkgs, flake-utils, devshell, treefmt-nix, pre-commit-hooks }:
let
supportedSystems = [ "x86_64-linux" "aarch64-linux" ];
in
{
nixosModules.queued-build-hook = import ./module.nix;
overlays.default = import ./overlay.nix { inherit self; };
} // flake-utils.lib.eachSystem supportedSystems (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ devshell.overlays.default ];
};
# treefmt-nix configuration
packages = {
queued-build-hook = pkgs.callPackage ./. { };
};
treefmt = (treefmt-nix.lib.mkWrapper pkgs
{
projectRootFile = "flake.nix";
programs = {
nixpkgs-fmt.enable = true;
gofumpt.enable = true;
};
settings.formatter.deadnix = {
command = "${pkgs.deadnix}/bin/deadnix";
options = [ "--edit" ];
includes = [ "*.nix" ];
};
});
in
{
packages = {
queued-build-hook = pkgs.callPackage ./. { };
};
packages.default = self.packages.${system}.queued-build-hook;
devShells.default = pkgs.devshell.mkShell {
packages = with pkgs; [
go
golangci-lint
systemfd
treefmt
];
devshell.startup.pre-commit.text = self.checks.${system}.pre-commit-check.shellHook;
env = [
{
name = "DEVSHELL_NO_MOTD";
value = "1";
}
];
commands = [
{
name = "fmt";
help = "Format code";
command = "${treefmt}/bin/treefmt";
}
{
name = "check";
help = "Check the code";
command = "${pkgs.pre-commit}/bin/pre-commit run --all";
}
{
name = "lint";
help = "Lint the code";
command = "${pkgs.golangci-lint}/bin/golangci-lint run";
}
];
};
checks = {
shell = self.devShells.${system}.default;
pre-commit-check = pre-commit-hooks.lib.${system}.run
{
src = ./.;
hooks = {
treefmt-check =
{
enable = true;
entry = "${treefmt}/bin/treefmt --fail-on-change";
pass_filenames = false;
};
};
};
} // import ./tests { inherit pkgs system; };
formatter = treefmt;
apps.default = { type = "app"; program = "${self.packages.${system}.queued-build-hook}/bin/queued-build-hook"; };
});
}