···191191 vector = if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector;
192192193193 # cabal2nix likes to generate dependencies on hinotify when hfsevents is really required
194194- # on darwin: https://github.com/NixOS/cabal2nix/issues/146
195195- hinotify = if pkgs.stdenv.isDarwin then self.hfsevents else super.hinotify;
194194+ # on darwin: https://github.com/NixOS/cabal2nix/issues/146.
195195+ # hinotify's test suite is broken: https://github.com/kolmodin/hinotify/issues/15.
196196+ hinotify = if pkgs.stdenv.isDarwin then self.hfsevents else dontCheck super.hinotify;
196197197198 # hfsevents needs CoreServices in scope
198199 hfsevents = if pkgs.stdenv.isDarwin