hpuefi: only build on x86_64 (#355419)

This commit is contained in:
Weijia Wang 2024-11-13 09:30:09 +01:00 committed by GitHub
commit 2295e86108
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://ftp.hp.com/pub/caps-softpaq/cmit/linuxtools/HP_LinuxTools.html";
description = "Kernel module for managing BIOS settings and updating BIOS firmware on supported HP computers";
license = lib.licenses.gpl2Only; # See "License" section in ./non-rpms/hpuefi-mod-*.tgz/README
platforms = lib.platforms.linux;
platforms = [ "x86_64-linux" ];
maintainers = with lib.maintainers; [ tomodachi94 ];
};
})