Commit 302622d3 authored by LucasFA's avatar LucasFA Committed by github-actions[bot]
Browse files

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

(cherry picked from commit 645719c0)
parent 03c3cfde
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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" ];
  };
}