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
dont use path
oeiuwq.com
3 months ago
e1898da1
52665a9a
+17
-13
3 changed files
expand all
collapse all
unified
split
templates
dendritic
checkmate
flake.lock
flake.nix
modules
target.nix
+15
-9
templates/dendritic/checkmate/flake.lock
···
4
4
"flake": false,
5
5
"locked": {
6
6
"dir": "modules/checkmate",
7
7
-
"lastModified": 1763687073,
8
8
-
"narHash": "sha256-SaP08ABfJY3wIUdJw5/XkAbbz3Jw+Bmj8FtJJqktI2k=",
7
7
+
"lastModified": 1763688069,
8
8
+
"narHash": "sha256-1mK38cB+dTFh6gieuqWswqbWAbV/cGrqiR+r6ONSL5s=",
9
9
"owner": "vic",
10
10
"repo": "checkmate",
11
11
-
"rev": "3cb30f412d96c7fec12dcd1c965f532d844743bf",
11
11
+
"rev": "52665a9ad341f0b11620aabbd8ede55af6638c06",
12
12
"type": "github"
13
13
},
14
14
"original": {
···
147
147
},
148
148
"target": {
149
149
"locked": {
150
150
-
"path": "..",
151
151
-
"type": "path"
150
150
+
"dir": "templates/dendritic",
151
151
+
"lastModified": 1763688069,
152
152
+
"narHash": "sha256-1mK38cB+dTFh6gieuqWswqbWAbV/cGrqiR+r6ONSL5s=",
153
153
+
"owner": "vic",
154
154
+
"repo": "checkmate",
155
155
+
"rev": "52665a9ad341f0b11620aabbd8ede55af6638c06",
156
156
+
"type": "github"
152
157
},
153
158
"original": {
154
154
-
"path": "..",
155
155
-
"type": "path"
156
156
-
},
157
157
-
"parent": []
159
159
+
"dir": "templates/dendritic",
160
160
+
"owner": "vic",
161
161
+
"repo": "checkmate",
162
162
+
"type": "github"
163
163
+
}
158
164
}
159
165
},
160
166
"root": "root",
+1
-1
templates/dendritic/checkmate/flake.nix
···
20
20
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
21
21
nixpkgs-lib.follows = "nixpkgs";
22
22
systems.url = "github:nix-systems/default";
23
23
-
target.url = "path:..";
23
23
+
target.url = "github:vic/checkmate?dir=templates/dendritic";
24
24
};
25
25
26
26
}
+1
-3
templates/dendritic/checkmate/modules/target.nix
···
1
1
-
{ ... }:
2
1
{
3
2
flake-file.inputs = {
4
4
-
target.url = "path:..";
3
3
+
target.url = "github:vic/checkmate?dir=templates/dendritic";
5
4
checkmate-modules.url = "github:vic/checkmate?dir=modules/checkmate";
6
5
checkmate-modules.flake = false;
7
6
};
8
8
-
# imports = [ (inputs.import-tree inputs.checkmate-modules) ];
9
7
}