Fix installed tool command probes

This commit is contained in:
Clusterflux 2026-07-27 03:57:20 +02:00
parent a6ab33d161
commit 4bfb0e6ea0
4 changed files with 82 additions and 1 deletions

View file

@ -37,6 +37,15 @@ let
test -x "$out/bin/clusterflux-node"
test -x "$out/bin/clusterflux-coordinator"
test -x "$out/bin/clusterflux-debug-dap"
for command in \
clusterflux \
clusterflux-node \
clusterflux-coordinator \
clusterflux-debug-dap
do
${pkgs.coreutils}/bin/timeout 5 "$out/bin/$command" --version >/dev/null
${pkgs.coreutils}/bin/timeout 5 "$out/bin/$command" --help >/dev/null
done
'';
postFixup =
let