Merge pull request #192276 from Luflosi/fix-hw-probe-aarch64
hw-probe: fix for aarch64
This commit is contained in:
commit
1bf731153e
1 changed files with 3 additions and 2 deletions
|
@ -100,7 +100,6 @@ stdenv.mkDerivation rec {
|
|||
mesa-demos
|
||||
memtester
|
||||
sysstat # (iostat)
|
||||
cpuid
|
||||
util-linuxMinimal # (rfkill)
|
||||
xinput
|
||||
libva-utils # (vainfo)
|
||||
|
@ -108,7 +107,9 @@ stdenv.mkDerivation rec {
|
|||
vulkan-utils
|
||||
i2c-tools
|
||||
opensc
|
||||
];
|
||||
]
|
||||
# cpuid is only compatible with i686 and x86_64
|
||||
++ lib.optional (lib.elem stdenv.hostPlatform.system cpuid.meta.platforms) cpuid;
|
||||
conditionallyRecommendedPrograms = lib.optional systemdSupport systemd; # (systemd-analyze)
|
||||
suggestedPrograms = [
|
||||
hplip # (hp-probe)
|
||||
|
|
Loading…
Reference in a new issue