From f6e1aa350d6b23a4ffb63fc859c89b79ec6ce8d0 Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 21 Apr 2024 19:49:14 +0000 Subject: nix: remove subflake (#174) --- nix/dev/checks.nix | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 nix/dev/checks.nix (limited to 'nix/dev/checks.nix') diff --git a/nix/dev/checks.nix b/nix/dev/checks.nix deleted file mode 100644 index 1d65625..0000000 --- a/nix/dev/checks.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ - perSystem = { - lib, - pkgs, - ... - }: { - checks = { - actionlint = pkgs.runCommand "check-actionlint" {} '' - ${lib.getExe pkgs.actionlint} ${../../.github/workflows}/* - touch $out - ''; - - editorconfig = pkgs.runCommand "check-editorconfig" {} '' - cd ${../../.} - ${lib.getExe pkgs.editorconfig-checker} \ - -exclude '.git' . - - touch $out - ''; - - statix = pkgs.runCommand "check-statix" {} '' - ${lib.getExe pkgs.statix} check ${../../.} - touch $out - ''; - }; - }; -} -- cgit v1.2.3