summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDivam Narula <dfordivam@gmail.com>2021-09-26 13:51:46 +0900
committerJohn Ericson <John.Ericson@Obsidian.Systems>2021-10-27 15:53:25 +0000
commit1c1f5649bb9c1b0d98637c8c365228f57126f361 (patch)
treeb82c5177a7e50f77ce79c1be7e4f9ea3e68f4f5c
parenthaskell.compiler.ghcjs: mark hydraPlatforms as none because output is too large (diff)
downloadnixpkgs-origin/nixos-20.09.tar.gz
ghcjs: Enable on darwin (#139067)origin/nixos-20.09
(cherry picked from commit d032f60c37ebdae3afd9a24212497ec8725ee4fb)
-rw-r--r--pkgs/development/compilers/ghcjs/8.10/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/compilers/ghcjs/8.10/default.nix b/pkgs/development/compilers/ghcjs/8.10/default.nix
index b2d480888441..f8e7c31353f7 100644
--- a/pkgs/development/compilers/ghcjs/8.10/default.nix
+++ b/pkgs/development/compilers/ghcjs/8.10/default.nix
@@ -109,8 +109,7 @@ in stdenv.mkDerivation {
inherit passthru;
meta = {
- # The emscripten is broken on darwin
- platforms = lib.platforms.linux;
+ platforms = with lib.platforms; linux ++ darwin;
# Hydra limits jobs to only outputting 1 gigabyte worth of files.
# GHCJS outputs over 3 gigabytes.