From 0ccf8eae2fde05fe196c39f0c7b7b70af8752a28 Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Fri, 14 Aug 2015 21:43:37 -0400 Subject: [PATCH] Disable some stuff that won't work with 7.6 anyway. Closes https://github.com/peti/nixpkgs/pull/19. --- pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix index dbdd0bc31b2a..a7bad53c7498 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -91,4 +91,9 @@ self: super: { # blaze-builder requires an additional build input on older compilers. blaze-builder = addBuildDepend super.blaze-builder super.bytestring-builder; + # available convertible package won't build with the available + # bytestring and ghc-mod won't build without convertible + convertible = markBroken super.convertible; + ghc-mod = markBroken super.ghc-mod; + }