about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghcjs.nix
diff options
context:
space:
mode:
authorJoachim Breitner <mail@joachim-breitner.de>2022-06-13 10:32:49 +0200
committerJoachim Breitner <mail@joachim-breitner.de>2022-06-13 10:34:00 +0200
commit8c77993daf675ca3fb00ee0bd85a8ab95f27fc93 (patch)
treea2233cc25df73567d3155d86ea2d716487cad3b8 /pkgs/development/haskell-modules/configuration-ghcjs.nix
parent2ef6dba194c547b4bda7b0984fa18723e8fa2215 (diff)
haskell.packages.ghcjs.ghcjs-base: 0.2.0.3 → 0.2.1.0
the new upstream release makes it build with aeson-2.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 bab115ce64178..2bfd653ccc113 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;
   });
@@ -35,6 +36,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;