lol

haskell-hinotify: test suite won't compile

+3 -2
+3 -2
pkgs/development/haskell-modules/configuration-common.nix
··· 191 191 vector = if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector; 192 192 193 193 # cabal2nix likes to generate dependencies on hinotify when hfsevents is really required 194 - # on darwin: https://github.com/NixOS/cabal2nix/issues/146 195 - hinotify = if pkgs.stdenv.isDarwin then self.hfsevents else super.hinotify; 194 + # on darwin: https://github.com/NixOS/cabal2nix/issues/146. 195 + # hinotify's test suite is broken: https://github.com/kolmodin/hinotify/issues/15. 196 + hinotify = if pkgs.stdenv.isDarwin then self.hfsevents else dontCheck super.hinotify; 196 197 197 198 # hfsevents needs CoreServices in scope 198 199 hfsevents = if pkgs.stdenv.isDarwin