summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/edk2
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-01-02 03:05:35 +0000
committerAlyssa Ross <hi@alyssa.is>2023-01-02 03:58:58 +0000
commitad049483afa1cd792d654bc3386746022db94ba0 (patch)
treed496a0d9ebc4ef65e2b63b50088e198b4ba96089 /pkgs/development/compilers/edk2
parentf24cc66c0e500d21aa242ca1e5e1e575b1e1034a (diff)
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.
Diffstat (limited to 'pkgs/development/compilers/edk2')
-rw-r--r--pkgs/development/compilers/edk2/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/edk2/default.nix b/pkgs/development/compilers/edk2/default.nix
index 43dc18244a91..8019d2131afd 100644
--- a/pkgs/development/compilers/edk2/default.nix
+++ b/pkgs/development/compilers/edk2/default.nix
@@ -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 = {