-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathflake.nix
142 lines (129 loc) · 3.97 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
systems.url = "github:nix-systems/default";
devshell.url = "github:deemp/devshell";
flakes.url = "github:deemp/flakes";
treefmt-nix.url = "github:numtide/treefmt-nix";
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = with inputs; [
devshell.flakeModule
treefmt-nix.flakeModule
];
systems = import inputs.systems;
perSystem =
{
pkgs,
lib,
system,
config,
...
}:
let
inherit (inputs.flakes.lib.${system}.drv-tools) mkShellApps;
writeYAML =
path: value:
pkgs.writeShellApplication {
name = "write";
text = ''
mkdir -p "$(dirname ${path})"
cat > ${path} <<'EOF'
${value}
EOF
'';
};
in
{
packages = mkShellApps {
writeSave = writeYAML "save/action.yml" (
import ./action.nix {
target = "save";
inherit (pkgs) lib;
}
);
writeRestore = writeYAML "restore/action.yml" (
import ./action.nix {
target = "restore";
inherit (pkgs) lib;
}
);
writeCache = writeYAML "action.yml" (
import ./action.nix {
target = "cache";
inherit (pkgs) lib;
}
);
writeActions = {
text = ''
${lib.getExe config.packages.writeSave}
${lib.getExe config.packages.writeRestore}
${lib.getExe config.packages.writeCache}
'';
};
write = {
runtimeInputs = [ pkgs.nodejs_20 ];
text = ''
${lib.getExe config.packages.writeActions}
npm run readme
npm run format
'';
description = "write action.yml-s and tables for README-s";
};
writeBuildjetCI = writeYAML ".github/workflows/buildjet-ci.yaml" (
import ./nix/ci.nix { backend = "buildjet"; inherit lib; }
);
writeActionsCI = writeYAML ".github/workflows/ci.yaml" (
import ./nix/ci.nix { backend = "actions"; inherit lib; }
);
writeCI = {
text = ''
${lib.getExe config.packages.writeBuildjetCI}
${lib.getExe config.packages.writeActionsCI}
npm run format-ci
'';
description = "write CI files";
};
install = {
runtimeInputs = [ pkgs.nodejs_20 ];
text = ''npm i'';
description = "install dependencies";
};
build = {
runtimeInputs = [ pkgs.nodejs_20 ];
text = "npm run build";
description = "build project";
};
};
devshells.default = {
packages = [ pkgs.nodejs_20 ];
commands.scripts = [
{
prefix = "nix run .#";
packages = {
inherit (config.packages) write install build writeCI;
};
}
];
};
treefmt = {
projectRootFile = "flake.nix";
programs.nixfmt-rfc-style.enable = true;
};
};
};
nixConfig = {
extra-substituters = [
"https://cache.nixos.org/"
"https://nix-community.cachix.org"
];
extra-trusted-public-keys = [
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
keep-outputs = true;
};
}