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
take only new target
oeiuwq.com
1 year ago
ffbb7e3a
922017ba
+7
-10
1 changed file
expand all
collapse all
unified
split
default.nix
+7
-10
default.nix
···
1
1
inputs:
2
2
let
3
3
functor =
4
4
-
_: newInputs: newModule:
4
4
+
_: target: newModule:
5
5
inputs.flake-parts.lib.mkFlake
6
6
{
7
7
-
inputs =
8
8
-
inputs
9
9
-
// newInputs
10
10
-
// {
11
11
-
target = newInputs.self;
12
12
-
checkmate = inputs.self // {
13
13
-
inputs = inputs.self.inputs // {
14
14
-
target = newInputs.self;
15
15
-
};
7
7
+
inputs = inputs // {
8
8
+
inherit target;
9
9
+
self = inputs.self // {
10
10
+
inputs = inputs.self.inputs // {
11
11
+
inherit target;
16
12
};
17
13
};
14
14
+
};
18
15
}
19
16
{
20
17
imports = [