haskell-configuration-ghc-7.8.x: various build fixes

- mtl-2.2.x needs transformers 0.4.x.
 - time-1.5.x can't build its test suite.
 - provide deep overrides for amazonka-* stuff to build with GHC 7.8.x
This commit is contained in:
Peter Simons
2015-01-08 18:50:19 +01:00
parent 3c8b33eee4
commit 388848fa9f
3 changed files with 42 additions and 1 deletions
@@ -79482,6 +79482,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
"nats_0_2" = callPackage
({ mkDerivation, base, hashable }:
mkDerivation {
pname = "nats";
version = "0.2";
sha256 = "05skqs5ahbrnwlsxjihkvmsw0n49k9mqdhrv9nqh4dmd1j622r73";
editedCabalFile = "e401a5253358858109c85e8f17a4b63e7dd86b59cc77ac4baa6a421b6645b439";
buildDepends = [ base hashable ];
configureFlags = [ "-fhashable" ];
homepage = "http://github.com/ekmett/nats/";
description = "Natural numbers";
license = stdenv.lib.licenses.bsd3;
}) {};
"nats" = callPackage
({ mkDerivation, base, hashable }:
mkDerivation {