From 7dfc5f07ce0a37254ea1dc4adfc59a189e336924 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 7 Jan 2024 08:55:29 +0100 Subject: [PATCH] Revert "flake: remove moving away the `unsupportedChecks`" This reverts commit d48eac71a41a517843e960a1ba4c22b67960ac34. CI now supports aarch64-linux. --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index 08652be..705ee7e 100644 --- a/flake.nix +++ b/flake.nix @@ -43,6 +43,10 @@ # 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);