Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

linuxPackages.bbswitch: disable on AArch64

It makes no sense on non-x86 platforms.

(cherry picked from commit 1890fe359a520bbc246be53fbd7d60b6b58efe44)

+1 -1
+1 -1
pkgs/os-specific/linux/bbswitch/default.nix
··· 50 50 51 51 meta = with stdenv.lib; { 52 52 description = "A module for powering off hybrid GPUs"; 53 - platforms = platforms.linux; 53 + platforms = [ "x86_64-linux" "i686-linux" ]; 54 54 homepage = https://github.com/Bumblebee-Project/bbswitch; 55 55 maintainers = with maintainers; [ abbradar ]; 56 56 };