More amazonka packages on 7.8

This commit is contained in:
Shea Levy 2015-01-12 20:58:57 +00:00
parent 67460ea19f
commit 3dc5be9ec5

View File

@ -56,6 +56,7 @@ self: super: {
process = overrideCabal self.process_1_2_1_0 (drv: { process = overrideCabal self.process_1_2_1_0 (drv: {
coreSetup = true; coreSetup = true;
}); });
inherit amazonka-core;
} // (builtins.listToAttrs (map (name: { } // (builtins.listToAttrs (map (name: {
inherit name; inherit name;
value = overrideCabal super.${name} (drv: { value = overrideCabal super.${name} (drv: {
@ -67,9 +68,16 @@ self: super: {
"http-client" "http-client"
"cryptohash-conduit" "cryptohash-conduit"
"xml-conduit" "xml-conduit"
"x509"
"x509-store"
"x509-system"
"x509-validation"
"tls"
"connection"
"http-client-tls"
"http-conduit"
])); ]));
Cabal = self.Cabal_1_18_1_6.overrideScope amazonkaEnv; Cabal = self.Cabal_1_18_1_6.overrideScope amazonkaEnv;
in {
amazonka-core = amazonka-core =
overrideCabal (super.amazonka-core.overrideScope amazonkaEnv) (drv: { overrideCabal (super.amazonka-core.overrideScope amazonkaEnv) (drv: {
# https://github.com/brendanhay/amazonka/pull/57 # https://github.com/brendanhay/amazonka/pull/57
@ -77,4 +85,11 @@ in {
extraLibraries = (drv.extraLibraries or []) ++ [ Cabal ]; extraLibraries = (drv.extraLibraries or []) ++ [ Cabal ];
}); });
useEnvCabal = p: overrideCabal (p.overrideScope amazonkaEnv) (drv: {
extraLibraries = (drv.extraLibraries or []) ++ [ Cabal ];
});
in {
inherit amazonka-core;
amazonka = useEnvCabal super.amazonka;
amazonka-cloudwatch = useEnvCabal super.amazonka-cloudwatch;
}) })