From b130423331ba4fbb1741d788db3934d50fe5e228 Mon Sep 17 00:00:00 2001 From: xeals Date: Wed, 27 Sep 2023 17:24:53 +1000 Subject: [PATCH] flake: disable linters --- flake.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index dbe3a75..ccf0eda 100644 --- a/flake.nix +++ b/flake.nix @@ -18,12 +18,13 @@ packages = import ./pkgs/top-level { localSystem = system; inherit pkgs; }; checks = { - nixpkgs-fmt = pkgs.writeShellScriptBin "nixpkgs-fmt-check" '' - ${pkgs.nixpkgs-fmt}/bin/nixpkgs-fmt --check . - ''; - deadnix = pkgs.writeShellScriptBin "deadnix-check" '' - ${pkgs.deadnix}/bin/deadnix --fail . - ''; + # FIXME: Disabled until I can work out what to do with generated code. + # nixpkgs-fmt = pkgs.writeShellScriptBin "nixpkgs-fmt-check" '' + # ${pkgs.nixpkgs-fmt}/bin/nixpkgs-fmt --check . + # ''; + # deadnix = pkgs.writeShellScriptBin "deadnix-check" '' + # ${pkgs.deadnix}/bin/deadnix --fail . + # ''; # Ensures that the NUR bot can evaluate and find all our packages. # Normally we'd also run with `--option restrict-eval true`, but # this is incompatible with flakes because reasons.