summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2015-05-31 11:29:56 +0200
committerRobert Helgesson <robert@rycee.net>2015-05-31 11:29:56 +0200
commit555ee2f7ba0d2dbe83db433ac21396106bbc42e0 (patch)
tree6e951540f10165a88b8039648c0d859b5cb37076 /pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
parent608482f6130690db7b1ce17a5621d270490acefc (diff)
downloadnixpkgs-555ee2f7ba0d2dbe83db433ac21396106bbc42e0.tar
nixpkgs-555ee2f7ba0d2dbe83db433ac21396106bbc42e0.tar.gz
nixpkgs-555ee2f7ba0d2dbe83db433ac21396106bbc42e0.tar.bz2
nixpkgs-555ee2f7ba0d2dbe83db433ac21396106bbc42e0.tar.lz
nixpkgs-555ee2f7ba0d2dbe83db433ac21396106bbc42e0.tar.xz
nixpkgs-555ee2f7ba0d2dbe83db433ac21396106bbc42e0.tar.zst
nixpkgs-555ee2f7ba0d2dbe83db433ac21396106bbc42e0.zip
Add patch for haskell-iconv to support GHC 7.10.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
index ac24848b8fe..2262819a779 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -284,4 +284,7 @@ self: super: {
   # Ugly hack to trigger a rebuild to fix the broken package on Hydra.
   crypto-api = appendConfigureFlag super.crypto-api "-fignore-me-1";
 
+  # Fix compilation under GHC 7.10, patch has been sent upstream.
+  iconv = appendPatch super.iconv ./iconv-fix-ghc710.patch;
+
 }