summary refs log tree commit diff
path: root/pkgs/os-specific/linux/bbswitch
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2018-03-09 16:28:47 +0300
committerNikolay Amiantov <ab@fmap.me>2018-03-09 16:35:10 +0300
commit1890fe359a520bbc246be53fbd7d60b6b58efe44 (patch)
treedb9f715fc22de46a18e2110ff91e49f8db94ec37 /pkgs/os-specific/linux/bbswitch
parent9983c7004b18ccc612e31f7d6edc9fce48b554be (diff)
downloadnixpkgs-1890fe359a520bbc246be53fbd7d60b6b58efe44.tar
nixpkgs-1890fe359a520bbc246be53fbd7d60b6b58efe44.tar.gz
nixpkgs-1890fe359a520bbc246be53fbd7d60b6b58efe44.tar.bz2
nixpkgs-1890fe359a520bbc246be53fbd7d60b6b58efe44.tar.lz
nixpkgs-1890fe359a520bbc246be53fbd7d60b6b58efe44.tar.xz
nixpkgs-1890fe359a520bbc246be53fbd7d60b6b58efe44.tar.zst
nixpkgs-1890fe359a520bbc246be53fbd7d60b6b58efe44.zip
linuxPackages.bbswitch: disable on AArch64
It makes no sense on non-x86 platforms.
Diffstat (limited to 'pkgs/os-specific/linux/bbswitch')
-rw-r--r--pkgs/os-specific/linux/bbswitch/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/bbswitch/default.nix b/pkgs/os-specific/linux/bbswitch/default.nix
index ade9b8f750f..f5d3b4f5c4e 100644
--- a/pkgs/os-specific/linux/bbswitch/default.nix
+++ b/pkgs/os-specific/linux/bbswitch/default.nix
@@ -50,7 +50,7 @@ stdenv.mkDerivation {
 
   meta = with stdenv.lib; {
     description = "A module for powering off hybrid GPUs";
-    platforms = platforms.linux;
+    platforms = [ "x86_64-linux" "i686-linux" ];
     homepage = https://github.com/Bumblebee-Project/bbswitch;
     maintainers = with maintainers; [ abbradar ];
   };