{ inputs = { nixpkgs.url = "nixpkgs/nixpkgs-unstable"; flake-utils.url = "github:numtide/flake-utils"; }; outputs = { nixpkgs, flake-utils, ... }: flake-utils.lib.eachDefaultSystem ( system: let pkgs = nixpkgs.legacyPackages.${system}; flake-checks' = (import ../.).mkChecks { inherit pkgs; root = ../.; }; in { checks = builtins.removeAttrs flake-checks' [ # we use nixfmt, so alejandra will always fail "alejandra" # this flake is not REUSE-compilant "reuse" ]; } ); }