From da2615649fcc90c706a4f67eacd64929bcebce05 Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Sat, 15 Feb 2025 16:39:16 +0530 Subject: [PATCH] scx.full: don't build on aarch64-linux As per https://github.com/NixOS/nixpkgs/pull/381138#issuecomment-2653368487 scx releases often breaks building on aarch64-linux, and besides the package does not seem to have proper support for this platform This reverts commit 0f40303097696a5cbb31cc583ae37c79540aa80f. This can be reverted again if we feel upstream has improved its aarch64-linux support. Link: https://github.com/sched-ext/scx/issues/1320 --- pkgs/os-specific/linux/scx/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/os-specific/linux/scx/default.nix b/pkgs/os-specific/linux/scx/default.nix index fdac201f5a5f..6e645f2f210e 100644 --- a/pkgs/os-specific/linux/scx/default.nix +++ b/pkgs/os-specific/linux/scx/default.nix @@ -21,6 +21,7 @@ let changelog = "https://github.com/sched-ext/scx/releases/tag/v${versionInfo.scx.version}"; license = lib.licenses.gpl2Only; platforms = lib.platforms.linux; + badPlatforms = [ "aarch64-linux" ]; maintainers = with lib.maintainers; [ johnrtitor ]; }; };