summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-08-25 08:41:14 +0200
committerPeter Simons <simons@cryp.to>2015-08-25 17:15:41 +0200
commit4ce6d653bba37c6b51e75391456fcfa37828d2c6 (patch)
tree3102ef317c95142064b10ff7cfaf8514c65e2350 /pkgs/development/haskell-modules/configuration-common.nix
parent412062eb488d9c9ac35cd9cf26c24aea3aa4353a (diff)
downloadnixpkgs-4ce6d653bba37c6b51e75391456fcfa37828d2c6.tar
nixpkgs-4ce6d653bba37c6b51e75391456fcfa37828d2c6.tar.gz
nixpkgs-4ce6d653bba37c6b51e75391456fcfa37828d2c6.tar.bz2
nixpkgs-4ce6d653bba37c6b51e75391456fcfa37828d2c6.tar.lz
nixpkgs-4ce6d653bba37c6b51e75391456fcfa37828d2c6.tar.xz
nixpkgs-4ce6d653bba37c6b51e75391456fcfa37828d2c6.tar.zst
nixpkgs-4ce6d653bba37c6b51e75391456fcfa37828d2c6.zip
haskell-fsnotify: disable failing test suite
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index e550b15065c..9aa7488beab 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -195,8 +195,9 @@ self: super: {
     else super.hfsevents;
 
   # FSEvents API is very buggy and tests are unreliable. See
-  # http://openradar.appspot.com/10207999 and similar issues
-  fsnotify = if pkgs.stdenv.isDarwin then dontCheck super.fsnotify else super.fsnotify;
+  # http://openradar.appspot.com/10207999 and similar issues.
+  # https://github.com/haskell-fswatch/hfsnotify/issues/62
+  fsnotify = dontCheck super.fsnotify; # if pkgs.stdenv.isDarwin then dontCheck super.fsnotify else super.fsnotify;
 
   # the system-fileio tests use canonicalizePath, which fails in the sandbox
   system-fileio = if pkgs.stdenv.isDarwin then dontCheck super.system-fileio else super.system-fileio;