summary refs log tree commit diff
diff options
context:
space:
mode:
author(cdep)illabout <cdep.illabout@gmail.com>2019-10-24 16:02:21 -0400
committer(cdep)illabout <cdep.illabout@gmail.com>2019-10-24 16:05:55 -0400
commitc41bbefd80d48938e18ae57a101a6cc26d6eb579 (patch)
tree1b3f8e6028b1ea08013f499a926151fe1db01925
parent35f1e575310d2b8b2ac13c65cbdad25c9b94fa75 (diff)
downloadnixpkgs-c41bbefd80d48938e18ae57a101a6cc26d6eb579.tar
nixpkgs-c41bbefd80d48938e18ae57a101a6cc26d6eb579.tar.gz
nixpkgs-c41bbefd80d48938e18ae57a101a6cc26d6eb579.tar.bz2
nixpkgs-c41bbefd80d48938e18ae57a101a6cc26d6eb579.tar.lz
nixpkgs-c41bbefd80d48938e18ae57a101a6cc26d6eb579.tar.xz
nixpkgs-c41bbefd80d48938e18ae57a101a6cc26d6eb579.tar.zst
nixpkgs-c41bbefd80d48938e18ae57a101a6cc26d6eb579.zip
haskellPackages.polysemy: mark dontCheck
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index e32039ee279..8bea3fc73d7 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1272,4 +1272,8 @@ self: super: {
   # upstream issue: https://github.com/vmchale/atspkg/issues/12
   language-ats = dontCheck super.language-ats;
 
+  # polysemy has occasional test failures from what looks like buggy async tests.
+  # We think this will probably be fixed when updating to the polysemy version in LTS-15.
+  polysemy = dontCheck super.polysemy;
+
 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super