mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
Revert "Use runCommandLocal for flake checks"
This reverts commit 68458ebd83.
This commit is contained in:
parent
a68e5c5842
commit
2a9da49533
1 changed files with 3 additions and 3 deletions
|
|
@ -5,17 +5,17 @@
|
||||||
{
|
{
|
||||||
checks = {
|
checks = {
|
||||||
# Disable until https://github.com/oppiliappan/statix/issues/88 is resolved
|
# 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}
|
# statix check ${self}
|
||||||
# mkdir $out
|
# mkdir $out
|
||||||
# '';
|
# '';
|
||||||
|
|
||||||
deadnix = pkgs.runCommandLocal "deadnix" { buildInputs = [ pkgs.deadnix ]; } ''
|
deadnix = pkgs.runCommand "deadnix" { buildInputs = [ pkgs.deadnix ]; } ''
|
||||||
deadnix --fail ${self}
|
deadnix --fail ${self}
|
||||||
mkdir $out
|
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
|
flake-checker --fail-mode
|
||||||
mkdir $out
|
mkdir $out
|
||||||
'';
|
'';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue