Merge pull request #308594 from Artturin/grubsetplat

grub2_xen: set to `x86_64-linux` and `i686-linux` only
This commit is contained in:
Artturin 2024-05-03 01:23:01 +03:00 committed by GitHub
commit f8de5fbf80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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