lol

haskell-split: disable test suite to avoid transient build failures

We have frequent build failures of "split" because the QuickCheck testsuite
cannot generate enough conclusive test cases, i.e. in

https://hydra.nixos.org/build/34857780/nixlog/1/raw

Cc: @byorgey

+4
+4
pkgs/development/haskell-modules/configuration-common.nix
··· 1010 1010 # tinc is a new build driver a la Stack that's not yet available from Hackage. 1011 1011 tinc = self.callPackage ../tools/haskell/tinc {}; 1012 1012 1013 + # Avoid transient build failures because the QuickCheck testsuite cannot 1014 + # generate enough conclusive test cases. 1015 + split = dontCheck super.split; 1016 + 1013 1017 }