Skip to content

Commit 3389aab

Browse files
committed
haskell.compiler.ghcjs: mark hydraPlatforms as none because output is too large
1 parent 7f8bee8 commit 3389aab

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

pkgs/development/compilers/ghcjs/8.10/default.nix

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,15 @@ in stdenv.mkDerivation {
108108

109109
inherit passthru;
110110

111-
# The emscripten is broken on darwin
112-
meta.platforms = lib.platforms.linux;
113-
meta.maintainers = with lib.maintainers; [ obsidian-systems-maintenance ];
111+
meta = {
112+
# The emscripten is broken on darwin
113+
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+
};
114122
}

0 commit comments

Comments
 (0)