From d48eac71a41a517843e960a1ba4c22b67960ac34 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Fri, 24 Nov 2023 16:09:00 +0100 Subject: [PATCH] flake: remove moving away the `unsupportedChecks` Alas, I don't know how to do this properly with Flakes, it is a sad state of affairs. --- flake.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/flake.nix b/flake.nix index 705ee7e..08652be 100644 --- a/flake.nix +++ b/flake.nix @@ -43,10 +43,6 @@ # Apply post-flakeparts massaging for limited supported systems, e.g. systems for which # we don't have KVM support and cannot test in CI, but we still can meaningfully # build packages. - { - path = [ "legacyPackages" "unsupportedChecks" ]; - update = checks: checks // (nixpkgs.lib.filterAttrs (name: _: !builtins.elem name supportedSystems) outputs.checks); - } { path = [ "checks" ]; update = nixpkgs.lib.filterAttrs (name: _: builtins.elem name supportedSystems);