diff options
| author | (cdep)illabout <cdep.illabout@gmail.com> | 2021-09-19 09:29:56 +0900 |
|---|---|---|
| committer | John Ericson <John.Ericson@Obsidian.Systems> | 2021-10-27 15:53:24 +0000 |
| commit | da0426a3b385f74878dea39d36f6f0694999cd64 (patch) | |
| tree | f7aa933d5fee6b0a27a2e6b85591acf57b89d357 | |
| parent | treewide: convert all links git.archlinux.org to github.com/archlinux/svntogit-* (diff) | |
| download | nixpkgs-da0426a3b385f74878dea39d36f6f0694999cd64.tar.gz | |
haskell.compiler.ghcjs: mark hydraPlatforms as none because output is too large
(cherry picked from commit 3389aab889719081e240ce169ec5bc0d5ccd60d0)
| -rw-r--r-- | pkgs/development/compilers/ghcjs/8.10/default.nix | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/pkgs/development/compilers/ghcjs/8.10/default.nix b/pkgs/development/compilers/ghcjs/8.10/default.nix index f1ef34eed51e..b2d480888441 100644 --- a/pkgs/development/compilers/ghcjs/8.10/default.nix +++ b/pkgs/development/compilers/ghcjs/8.10/default.nix @@ -108,7 +108,15 @@ in stdenv.mkDerivation { inherit passthru; - # The emscripten is broken on darwin - meta.platforms = lib.platforms.linux; - meta.maintainers = with lib.maintainers; [ obsidian-systems-maintenance ]; + meta = { + # The emscripten is broken on darwin + 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 ]; + }; } |
