edk2: don't hardcode OSes in meta.platforms

There's nothing about edk2 specific to the host OS, and it builds fine
with e.g. a NetBSD toolchain, so we should only restrict
meta.platforms by architecture, not by OS.
This commit is contained in:
Alyssa Ross
2023-01-02 03:58:58 +00:00
parent f24cc66c0e
commit ad049483af
+1 -1
View File
@@ -83,7 +83,7 @@ edk2 = buildStdenv.mkDerivation {
description = "Intel EFI development kit";
homepage = "https://github.com/tianocore/tianocore.github.io/wiki/EDK-II/";
license = licenses.bsd2;
platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" "x86_64-darwin" ];
platforms = with platforms; aarch64 ++ i686 ++ x86_64;
};
passthru = {