hardinfo: restrict to x86 linux platforms

This commit is contained in:
Renaud 2019-11-16 16:25:07 +01:00 committed by GitHub
parent 5a8ecec12b
commit 5af5b19bc7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
};
}