summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghcjs.nix
diff options
context:
space:
mode:
authorDennis Gosnell <cdep.illabout@gmail.com>2022-06-16 13:34:30 +0900
committerGitHub <noreply@github.com>2022-06-16 13:34:30 +0900
commit2533b1a2a6244d63b7e39505befb275338fae9c7 (patch)
tree26105290322ac227b0a58ff84ddd4ec1b34d5257 /pkgs/development/haskell-modules/configuration-ghcjs.nix
parent4bcc666196ecc00f99da5823acbf348f43498386 (diff)
parent8c77993daf675ca3fb00ee0bd85a8ab95f27fc93 (diff)
downloadnixpkgs-2533b1a2a6244d63b7e39505befb275338fae9c7.tar
nixpkgs-2533b1a2a6244d63b7e39505befb275338fae9c7.tar.gz
nixpkgs-2533b1a2a6244d63b7e39505befb275338fae9c7.tar.bz2
nixpkgs-2533b1a2a6244d63b7e39505befb275338fae9c7.tar.lz
nixpkgs-2533b1a2a6244d63b7e39505befb275338fae9c7.tar.xz
nixpkgs-2533b1a2a6244d63b7e39505befb275338fae9c7.tar.zst
nixpkgs-2533b1a2a6244d63b7e39505befb275338fae9c7.zip
Merge pull request #177489 from nomeata/joachim/ghcjs-base
haskell.packages.ghcjs.ghcjs-base: 0.2.0.3 → 0.2.1.0
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghcjs.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghcjs.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghcjs.nix b/pkgs/development/haskell-modules/configuration-ghcjs.nix
index 0578c3f677f..94a173c049b 100644
--- a/pkgs/development/haskell-modules/configuration-ghcjs.nix
+++ b/pkgs/development/haskell-modules/configuration-ghcjs.nix
@@ -18,6 +18,7 @@ self: super:
   inherit (self.ghc.bootPkgs)
     jailbreak-cabal alex happy gtk2hs-buildtools rehoo hoogle;
 
+  # Test suite fails; https://github.com/ghcjs/ghcjs-base/issues/133
   ghcjs-base = dontCheck (self.callPackage ../compilers/ghcjs/ghcjs-base.nix {
     fetchFromGitHub = pkgs.buildPackages.fetchFromGitHub;
     aeson = self.aeson_1_5_6_0;
@@ -36,6 +37,9 @@ self: super:
   # nodejs crashes during test
   ChasingBottoms = dontCheck super.ChasingBottoms;
 
+  # runs forever
+  text-short = dontCheck super.text-short;
+
   # doctest doesn't work on ghcjs, but sometimes dontCheck doesn't seem to get rid of the dependency
   doctest = pkgs.lib.warn "ignoring dependency on doctest" null;