about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorMatt McHenry <github@matt.mchenryfamily.org>2018-04-05 21:48:21 -0400
committerMatt McHenry <github@matt.mchenryfamily.org>2018-04-05 22:05:43 -0400
commit8ea70531de391a66fc0c7d445340ca7c6e21c892 (patch)
tree1f71b1ef7dba0b96f5e51a3aa9f0b90cedfa3df1 /pkgs/development/haskell-modules
parentea145b68a019f6fff89e772e9a6c5f0584acc02c (diff)
downloadnixlib-8ea70531de391a66fc0c7d445340ca7c6e21c892.tar
nixlib-8ea70531de391a66fc0c7d445340ca7c6e21c892.tar.gz
nixlib-8ea70531de391a66fc0c7d445340ca7c6e21c892.tar.bz2
nixlib-8ea70531de391a66fc0c7d445340ca7c6e21c892.tar.lz
nixlib-8ea70531de391a66fc0c7d445340ca7c6e21c892.tar.xz
nixlib-8ea70531de391a66fc0c7d445340ca7c6e21c892.tar.zst
nixlib-8ea70531de391a66fc0c7d445340ca7c6e21c892.zip
amazonka: fix build after hackage update
fixes #38306
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 4d85a26227ee..fdabea7aa758 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1009,3 +1009,20 @@ self: super: {
   pure-zlib = doJailbreak super.pure-zlib;
 
 }
+
+//
+
+(let
+  amazonkaOverrides = self: super: {
+    conduit = self.conduit_1_2_13_1;
+    conduit-extra = self.conduit-extra_1_2_3_2;
+    resourcet = self.resourcet_1_1_11;
+    xml-conduit = self.xml-conduit_1_7_1_2;
+    http-conduit = self.http-conduit_2_2_4;
+  };
+  amazonka-core = super.amazonka-core.overrideScope amazonkaOverrides;
+  amazonka = super.amazonka.overrideScope amazonkaOverrides;
+  amazonka-test = super.amazonka-test.overrideScope amazonkaOverrides;
+in {
+  inherit amazonka amazonka-core amazonka-test;
+})
\ No newline at end of file