haskell.compiler.ghc*: allow all platforms

Propagating the supported platforms of the boot compiler doesn't make
much sense when unregistered cross-compilation is possible.
This commit is contained in:
Alex Tunstall
2024-09-08 23:50:05 +02:00
committed by sternenseemann
parent d3bad45240
commit 322bab8284
3 changed files with 6 additions and 3 deletions
+2 -1
View File
@@ -492,7 +492,8 @@ stdenv.mkDerivation (rec {
guibou
] ++ lib.teams.haskell.members;
timeout = 24 * 3600;
inherit (ghc.meta) license platforms;
platforms = lib.platforms.all;
inherit (ghc.meta) license;
};
} // lib.optionalAttrs targetPlatform.useAndroidPrebuilt {
@@ -643,7 +643,8 @@ stdenv.mkDerivation ({
guibou
] ++ lib.teams.haskell.members;
timeout = 24 * 3600;
inherit (ghc.meta) license platforms;
platforms = lib.platforms.all;
inherit (ghc.meta) license;
};
dontStrip = targetPlatform.useAndroidPrebuilt || targetPlatform.isWasm;
@@ -509,7 +509,8 @@ stdenv.mkDerivation (rec {
guibou
] ++ lib.teams.haskell.members;
timeout = 24 * 3600;
inherit (ghc.meta) license platforms;
platforms = lib.platforms.all;
inherit (ghc.meta) license;
};
} // lib.optionalAttrs targetPlatform.useAndroidPrebuilt {