summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
diff options
context:
space:
mode:
authorMichael Alan Dorman <mdorman@ironicdesign.com>2015-08-14 21:43:37 -0400
committerPeter Simons <simons@cryp.to>2015-08-17 17:56:38 +0200
commit0ccf8eae2fde05fe196c39f0c7b7b70af8752a28 (patch)
tree3f78b938a18f2a20f87cda21b52579ef4ab35e82 /pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
parentc845fcfbb38d50f84ba92f9f8d189aa31a8cd3e1 (diff)
downloadnixlib-0ccf8eae2fde05fe196c39f0c7b7b70af8752a28.tar
nixlib-0ccf8eae2fde05fe196c39f0c7b7b70af8752a28.tar.gz
nixlib-0ccf8eae2fde05fe196c39f0c7b7b70af8752a28.tar.bz2
nixlib-0ccf8eae2fde05fe196c39f0c7b7b70af8752a28.tar.lz
nixlib-0ccf8eae2fde05fe196c39f0c7b7b70af8752a28.tar.xz
nixlib-0ccf8eae2fde05fe196c39f0c7b7b70af8752a28.tar.zst
nixlib-0ccf8eae2fde05fe196c39f0c7b7b70af8752a28.zip
Disable some stuff that won't work with 7.6 anyway.
Closes https://github.com/peti/nixpkgs/pull/19.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix5
1 files changed, 5 insertions, 0 deletions
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;
+
 }