grub2_xen: set to x86_64-linux and i686-linux only

from grub's configure.ac
This commit is contained in:
Artturin 2024-05-02 22:05:45 +03:00
parent 275148e602
commit 85ed61f0b7

View File

@ -207,7 +207,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus;
platforms = platforms.gnu ++ platforms.linux;
platforms = if xenSupport then [ "x86_64-linux" "i686-linux" ] else platforms.gnu ++ platforms.linux;
maintainers = [ maintainers.samueldr ];
};