From 645719c0b32b33c5d17736ffdc97c7c626f79eee Mon Sep 17 00:00:00 2001 From: LucasFA <23667494+LucasFA@users.noreply.github.com> Date: Tue, 20 May 2025 15:47:18 +0100 Subject: [PATCH] qc71_laptop: rectify meta.platforms This package is not expected to build in other platforms and has been failing aarch64-linux in Hydra for years: https://hydra.nixos.org/eval/1790516?filter=qc71&compare=1790473 https://hydra.nixos.org/eval/1795290?filter=qc71&compare=1795271 https://hydra.nixos.org/eval/1807986?filter=qc71&compare=1807946 --- pkgs/os-specific/linux/qc71_laptop/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/qc71_laptop/default.nix b/pkgs/os-specific/linux/qc71_laptop/default.nix index 73a6a77dbad9..2705375237ce 100644 --- a/pkgs/os-specific/linux/qc71_laptop/default.nix +++ b/pkgs/os-specific/linux/qc71_laptop/default.nix @@ -40,6 +40,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/pobrn/qc71_laptop/"; license = licenses.gpl2Only; maintainers = with maintainers; [ aacebedo ]; - platforms = platforms.linux; + platforms = [ "x86_64-linux" ]; }; }