Disable some stuff that won't work with 7.6 anyway.

Closes https://github.com/peti/nixpkgs/pull/19.

authored by Michael Alan Dorman and committed by Peter Simons 0ccf8eae c845fcfb

+5
+5
pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
··· 91 # blaze-builder requires an additional build input on older compilers. 92 blaze-builder = addBuildDepend super.blaze-builder super.bytestring-builder; 93 94 }
··· 91 # blaze-builder requires an additional build input on older compilers. 92 blaze-builder = addBuildDepend super.blaze-builder super.bytestring-builder; 93 94 + # available convertible package won't build with the available 95 + # bytestring and ghc-mod won't build without convertible 96 + convertible = markBroken super.convertible; 97 + ghc-mod = markBroken super.ghc-mod; 98 + 99 }