-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathflake.nix
192 lines (177 loc) · 5.19 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/02032da4af073d0f6110540c8677f16d4be0117f";
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.url = "github:NixOS/nixpkgs/02032da4af073d0f6110540c8677f16d4be0117f?dir=lib";
};
systems.url = "github:nix-systems/default";
devshell = {
url = "github:deemp/devshell";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.inputs.systems.follows = "systems";
};
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
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
mkShellApps = lib.mapAttrs (
name: value:
if !(lib.isDerivation value) && lib.isAttrs value then
pkgs.writeShellApplication (value // { inherit name; })
else
value
);
writeYAML =
path: value:
pkgs.writeShellApplication {
name = "write";
text = ''
mkdir -p "$(dirname ${path})"
cat > ${path} <<'EOF'
${value}
EOF
'';
};
nodejs = pkgs.nodejs_23;
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 = [
nodejs
pkgs.mdsh
];
text = ''
${lib.getExe config.packages.writeActions}
mdsh -i README.md --work_dir examples/saveFromGC
npm run readme
npm run format
'';
meta.description = "write action.yml-s and 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
'';
meta.description = "write CI files";
};
install = {
runtimeInputs = [ nodejs ];
text = ''npm i'';
meta.description = "install dependencies";
};
build = {
runtimeInputs = [ nodejs ];
text = "npm run build";
meta.description = "build project";
};
inherit
(import ./saveFromGC.nix {
inherit pkgs inputs;
inputsExclude = [
inputs.devshell
inputs.treefmt-nix
];
derivations = [
config.packages.install
config.packages.write
];
})
saveFromGC
;
};
devshells.default = {
packages = [
nodejs
pkgs.mdsh
];
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;
};
}