Revert "Use runCommandLocal for flake checks"

This reverts commit 68458ebd83.
This commit is contained in:
SebastianStork 2025-05-17 20:20:19 +02:00
parent a68e5c5842
commit 2a9da49533

View file

@ -5,17 +5,17 @@
{
checks = {
# Disable until https://github.com/oppiliappan/statix/issues/88 is resolved
# statix = pkgs.runCommandLocal "statix" { buildInputs = [ pkgs.statix ]; } ''
# statix = pkgs.runCommand "statix" { buildInputs = [ pkgs.statix ]; } ''
# statix check ${self}
# mkdir $out
# '';
deadnix = pkgs.runCommandLocal "deadnix" { buildInputs = [ pkgs.deadnix ]; } ''
deadnix = pkgs.runCommand "deadnix" { buildInputs = [ pkgs.deadnix ]; } ''
deadnix --fail ${self}
mkdir $out
'';
flake-checker = pkgs.runCommandLocal "flake-checker" { buildInputs = [ pkgs.flake-checker ]; } ''
flake-checker = pkgs.runCommand "flake-checker" { buildInputs = [ pkgs.flake-checker ]; } ''
flake-checker --fail-mode
mkdir $out
'';