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
run
oeiuwq.com
11 months ago
f5531bdb
b7864acd
+14
1 changed file
expand all
collapse all
unified
split
default.nix
+14
default.nix
···
13
13
./flakeModule.nix
14
14
checkmate
15
15
];
16
16
+
perSystem =
17
17
+
{ pkgs, ... }:
18
18
+
{
19
19
+
packages.default = pkgs.writeShellApplication {
20
20
+
name = "flake-check";
21
21
+
text = ''
22
22
+
(
23
23
+
test -f checkmate/flake.nix && cd checkmate || true
24
24
+
nix flake update target
25
25
+
nix flake check
26
26
+
)
27
27
+
'';
28
28
+
};
29
29
+
};
16
30
};
17
31
in
18
32
{