about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2019-11-16 16:25:07 +0100
committerGitHub <noreply@github.com>2019-11-16 16:25:07 +0100
commit5af5b19bc7c7e59d30a61840c0c8a576e524466c (patch)
treeb727c7422d0b4f0e025c17a0b26ad7104b067337
parent5a8ecec12b2a08a52a06169c2c38f0cd44ea399d (diff)
hardinfo: restrict to x86 linux platforms
-rw-r--r--pkgs/tools/system/hardinfo/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/system/hardinfo/default.nix b/pkgs/tools/system/hardinfo/default.nix
index a2e342f85b74f..6c5019847ff3c 100644
--- a/pkgs/tools/system/hardinfo/default.nix
+++ b/pkgs/tools/system/hardinfo/default.nix
@@ -45,6 +45,6 @@ stdenv.mkDerivation rec {
     description = "Display information about your hardware and operating system";
     license = licenses.gpl2;
     maintainers = with maintainers; [ bjornfor ];
-    platforms = platforms.linux;
+    platforms = [ "x86_64-linux" "i686-linux" ]; # ARMv7 and AArch64 are unsupported
   };
 }