haskell.compiler.ghcjs: mark hydraPlatforms as none because output is too large
(cherry picked from commit 3389aab889719081e240ce169ec5bc0d5ccd60d0)
This commit is contained in:
parent
de6f737cbd
commit
4ecfdc7f46
|
@ -108,7 +108,15 @@ in stdenv.mkDerivation {
|
|||
|
||||
inherit passthru;
|
||||
|
||||
meta = {
|
||||
# The emscripten is broken on darwin
|
||||
meta.platforms = lib.platforms.linux;
|
||||
meta.maintainers = with lib.maintainers; [ obsidian-systems-maintenance ];
|
||||
platforms = lib.platforms.linux;
|
||||
|
||||
# Hydra limits jobs to only outputting 1 gigabyte worth of files.
|
||||
# GHCJS outputs over 3 gigabytes.
|
||||
# https://github.com/NixOS/nixpkgs/pull/137066#issuecomment-922335563
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
|
||||
maintainers = with lib.maintainers; [ obsidian-systems-maintenance ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue