about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2018-04-06 10:51:02 +0200
committerGitHub <noreply@github.com>2018-04-06 10:51:02 +0200
commitfac2951d8b31922ab7f1c0286ffffe2252d42d82 (patch)
tree745aa7a077f98a4338e228cb4e41fec6c38b0e86 /pkgs
parent9430efbe49d282023e6d8f37e771123157e6fbba (diff)
parent8ea70531de391a66fc0c7d445340ca7c6e21c892 (diff)
Merge pull request #38496 from jerith666/amazonka-fix
amazonka: fix build after hackage update
Diffstat (limited to 'pkgs')
-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 6b4c56ab6c5f4..6d33dfd940b99 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1024,3 +1024,20 @@ self: super: {
   });
 
 }
+
+//
+
+(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