tangled
alpha
login
or
join now
oeiuwq.com
/
checkmate
0
fork
atom
A flake checker (treefmt & nix-unit) for testing other flakes with zero dependencies.
0
fork
atom
overview
issues
pulls
pipelines
override target on mkFlake
oeiuwq.com
1 year ago
2ce223b9
a831a40c
+11
-1
1 changed file
expand all
collapse all
unified
split
default.nix
+11
-1
default.nix
···
18
18
newInputs: newModule:
19
19
inputs.flake-parts.mkFlake
20
20
{
21
21
-
inputs = inputs // newInputs // { target = newInputs.self; };
21
21
+
inputs =
22
22
+
inputs
23
23
+
// newInputs
24
24
+
// {
25
25
+
target = newInputs.self;
26
26
+
checkmate = inputs.self // {
27
27
+
inputs = inputs.self.inputs // {
28
28
+
target = newInputs.self;
29
29
+
};
30
30
+
};
31
31
+
};
22
32
}
23
33
{
24
34
imports = [