-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
274 lines (239 loc) · 9.02 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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
# --- flake.nix
{
description = "Nix flakes interactive template builder based on flake-parts written in Rust.";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
systems.url = "github:nix-systems/default";
};
outputs =
inputs@{ flake-parts, ... }:
let
inherit (inputs.nixpkgs) lib;
tsandrini = {
email = "tomas.sandrini@seznam.cz";
name = "Tomáš Sandrini";
github = "tsandrini";
githubId = 21975189;
};
mkFlakeParts =
args@{ stdenv, ... }:
let
finalArgs = {
name = "flake-parts";
version = "1.0.0-b1";
dontConfigure = true;
dontBuild = true;
dontCheck = true;
installPhase = ''
mkdir -p $out/flake-parts
cp -rv $src/* $out/flake-parts
'';
} // args;
in
stdenv.mkDerivation finalArgs;
in
flake-parts.lib.mkFlake { inherit inputs; } {
systems = import inputs.systems;
flake.lib = rec {
inherit mkFlakeParts;
flatten = attrs: lib.collect (x: !lib.isAttrs x) attrs;
mapFilterAttrs =
pred: f: attrs:
lib.filterAttrs pred (lib.mapAttrs' f attrs);
mapModules =
dir: fn:
mapFilterAttrs (n: v: v != null && !(lib.hasPrefix "_" n) && !(lib.lib.hasPrefix ".git" n)) (
n: v:
let
path = "${toString dir}/${n}";
in
if v == "directory" && builtins.pathExists "${path}/default.nix" then
lib.nameValuePair n (fn path)
else if v == "directory" then
lib.nameValuePair n (mapModules path fn)
else if v == "regular" && n != "default.nix" && lib.hasSuffix ".nix" n then
lib.nameValuePair (lib.removeSuffix ".nix" n) (fn path)
else
lib.nameValuePair "" null
) (builtins.readDir dir);
# NOTE In case anyone ditches _bootstrap and wants to use
# load-parts directly from here.
loadParts = dir: flatten (mapModules dir (x: x));
};
perSystem =
{
config,
pkgs,
system,
...
}:
{
packages = {
default = config.packages.builder;
builder =
let
package =
{
lib,
rustPlatform,
nixfmt-rfc-style,
nix,
tsandrini,
}:
rustPlatform.buildRustPackage {
name = "flake-parts-builder";
version = "1.0.0-b1";
src = [
./src
./Cargo.toml
./Cargo.lock
];
unpackPhase = ''
runHook preUnpack
for srcItem in $src; do
if [ -d "$srcItem" ]; then
cp -r "$srcItem" $(stripHash "$srcItem")
else
cp "$srcItem" $(stripHash "$srcItem")
fi
done
runHook postUnpack
'';
preCheck = ''
dirs=(store var var/nix var/log/nix etc home)
for dir in $dirs; do
mkdir -p "$TMPDIR/$dir"
done
export NIX_STORE_DIR=$TMPDIR/store
export NIX_LOCALSTATE_DIR=$TMPDIR/var
export NIX_STATE_DIR=$TMPDIR/var/nix
export NIX_LOG_DIR=$TMPDIR/var/log/nix
export NIX_CONF_DIR=$TMPDIR/etc
export HOME=$TMPDIR/home
'';
cargoHash = "sha256-Rhc9Zxf8YMXRsxQJzcRfRhe02hcQ3XrxyDzcaYBpy0E=";
postBuild = ''
cargo doc --no-deps --release
'';
postInstall = ''
mkdir -p $out/doc
cp -r target/doc $out/
'';
buildInputs = [
nixfmt-rfc-style
nix
];
NIX_BIN_PATH = "${nix}/bin/nix";
meta = with lib; {
homepage = "https://github.com/tsandrini/flake-parts-builder";
description = "Nix flakes interactive template builder based on flake-parts written in Rust.";
license = licenses.mit;
platforms = [ system ];
maintainers = [ tsandrini ];
mainProgram = "flake-parts-builder";
};
};
in
pkgs.callPackage package {
inherit tsandrini;
nix = pkgs.nixVersions.stable;
};
flake-parts =
let
package =
{
lib,
stdenv,
tsandrini,
mkFlakeParts,
}:
mkFlakeParts {
inherit stdenv;
name = "flake-parts";
version = "1.0.0-b1";
src = ./flake-parts;
meta = with lib; {
homepage = "https://github.com/tsandrini/flake-parts-builder";
description = "The base collection of flake-parts for the flake-parts-builder.";
license = licenses.mit;
platforms = [ system ];
maintainers = [ tsandrini ];
};
};
in
pkgs.callPackage package { inherit tsandrini mkFlakeParts; };
flake-parts-bootstrap =
let
package =
{
lib,
stdenv,
tsandrini,
mkFlakeParts,
}:
mkFlakeParts {
inherit stdenv;
name = "flake-parts-bootstrap";
version = "1.0.0-b1";
src = ./flake-parts-bootstrap;
meta = with lib; {
homepage = "https://github.com/tsandrini/flake-parts-builder";
description = "The base collection of flake-parts for the flake-parts-builder.";
license = licenses.mit;
platforms = [ system ];
maintainers = [ tsandrini ];
};
};
in
pkgs.callPackage package { inherit tsandrini mkFlakeParts; };
};
devShells = {
default = config.devShells.dev;
dev =
let
package =
{
mkShell,
nil,
statix,
deadnix,
nix-output-monitor,
nixfmt-rfc-style,
commitizen,
cz-cli,
gh,
gh-dash,
markdownlint-cli,
}:
mkShell {
buildInputs = [
# -- NIX UTILS --
nil # Yet another language server for Nix
statix # Lints and suggestions for the nix programming language
deadnix # Find and remove unused code in .nix source files
nix-output-monitor # Processes output of Nix commands to show helpful and pretty information
nixfmt-rfc-style # An opinionated formatter for Nix
# -- GIT RELATED UTILS --
commitizen # Tool to create committing rules for projects, auto bump versions, and generate changelogs
cz-cli # The commitizen command line utility
# fh # The official FlakeHub CLI
gh # GitHub CLI tool
gh-dash # Github Cli extension to display a dashboard with pull requests and issues
# -- BASE LANG UTILS --
markdownlint-cli # Command line interface for MarkdownLint
# nodePackages.prettier # Prettier is an opinionated code formatter
# typos # Source code spell checker
# -- (YOUR) EXTRA PKGS --
];
shellHook = ''
# Welcome splash text
echo ""; echo -e "\e[1;37;42mWelcome to the flake-parts-builder devshell!\e[0m"; echo ""
'';
};
in
pkgs.callPackage package { };
};
};
};
}