summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-02-16 10:43:36 +0100
committerPeter Simons <simons@cryp.to>2015-02-16 10:43:36 +0100
commit85e2076a0b201daeca3a34169076a88c59dc8e91 (patch)
tree3e1f0a9a68619991d2b7e080553147b47ef3f751 /pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
parent92934f386e83130cca2c6433f3399fa79f702df9 (diff)
downloadnixpkgs-85e2076a0b201daeca3a34169076a88c59dc8e91.tar
nixpkgs-85e2076a0b201daeca3a34169076a88c59dc8e91.tar.gz
nixpkgs-85e2076a0b201daeca3a34169076a88c59dc8e91.tar.bz2
nixpkgs-85e2076a0b201daeca3a34169076a88c59dc8e91.tar.lz
nixpkgs-85e2076a0b201daeca3a34169076a88c59dc8e91.tar.xz
nixpkgs-85e2076a0b201daeca3a34169076a88c59dc8e91.tar.zst
nixpkgs-85e2076a0b201daeca3a34169076a88c59dc8e91.zip
haskell-amazonka-ecs: fix build with ghc 7.8.x
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
index 2971af0d2a3..20c82c0f2c3 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
@@ -121,14 +121,15 @@ self: super: {
     unix = self.unix_2_7_1_0;
     directory = self.directory_1_2_1_0;
     process = overrideCabal self.process_1_2_2_0 (drv: { coreSetup = true; });
-    inherit amazonka-core amazonkaEnv amazonka amazonka-cloudwatch amazonka-glacier;
+    inherit amazonka-core amazonkaEnv amazonka amazonka-cloudwatch amazonka-glacier amazonka-ecs;
   };
   amazonka = super.amazonka.overrideScope amazonkaEnv;
   amazonka-cloudwatch = super.amazonka-cloudwatch.overrideScope amazonkaEnv;
   amazonka-core = super.amazonka-core.overrideScope amazonkaEnv;
+  amazonka-ecs = super.amazonka-ecs.overrideScope amazonkaEnv;
   amazonka-glacier = super.amazonka-glacier.overrideScope amazonkaEnv;
   amazonka-kms = super.amazonka-kms.overrideScope amazonkaEnv;
 in {
   inherit amazonkaEnv;
-  inherit amazonka amazonka-cloudwatch amazonka-core amazonka-kms amazonka-glacier;
+  inherit amazonka amazonka-cloudwatch amazonka-core amazonka-ecs amazonka-kms amazonka-glacier;
 })