We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f8bee8 commit 3389aabCopy full SHA for 3389aab
pkgs/development/compilers/ghcjs/8.10/default.nix
@@ -108,7 +108,15 @@ in stdenv.mkDerivation {
108
109
inherit passthru;
110
111
- # The emscripten is broken on darwin
112
- meta.platforms = lib.platforms.linux;
113
- meta.maintainers = with lib.maintainers; [ obsidian-systems-maintenance ];
+ meta = {
+ # The emscripten is broken on darwin
+ platforms = lib.platforms.linux;
114
+
115
+ # Hydra limits jobs to only outputting 1 gigabyte worth of files.
116
+ # GHCJS outputs over 3 gigabytes.
117
+ # https://github.com/NixOS/nixpkgs/pull/137066#issuecomment-922335563
118
+ hydraPlatforms = lib.platforms.none;
119
120
+ maintainers = with lib.maintainers; [ obsidian-systems-maintenance ];
121
+ };
122
}
0 commit comments