haskell-ng: update Cabal to version 1.22.1.1 and binary to version 0.7.4.0

+2 -2
pkgs/development/haskell-modules/configuration-common.nix
···
# Some packages need a non-core version of Cabal.
Cabal_1_18_1_6 = dontCheck super.Cabal_1_18_1_6;
Cabal_1_20_0_3 = dontCheck super.Cabal_1_20_0_3;
-
Cabal_1_22_1_0 = dontCheck super.Cabal_1_22_1_0;
-
cabal-install = dontCheck (super.cabal-install.override { Cabal = self.Cabal_1_22_1_0; });
+
Cabal_1_22_1_1 = dontCheck super.Cabal_1_22_1_1;
+
cabal-install = dontCheck (super.cabal-install.override { Cabal = self.Cabal_1_22_1_1; });
# Break infinite recursions.
digest = super.digest.override { inherit (pkgs) zlib; };
+1 -1
pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
···
unix = null;
# binary is not a core library for this compiler.
-
binary = self.binary_0_7_3_0;
+
binary = self.binary_0_7_4_0;
# deepseq is not a core library for this compiler.
deepseq_1_3_0_1 = dontJailbreak super.deepseq_1_3_0_1;
+1 -1
pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix
···
unix = null;
# binary is not a core library for this compiler.
-
binary = self.binary_0_7_3_0;
+
binary = self.binary_0_7_4_0;
# deepseq is not a core library for this compiler.
deepseq = self.deepseq_1_4_0_0;
+1 -1
pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
···
transformers-compat = disableCabalFlag super.transformers-compat "three";
# https://github.com/haskell/cabal/issues/2322
-
Cabal_1_22_1_0 = super.Cabal_1_22_1_0.override { binary = self.binary_0_7_3_0; process = self.process_1_2_2_0; };
+
Cabal_1_22_1_1 = super.Cabal_1_22_1_1.override { binary = self.binary_0_7_4_0; process = self.process_1_2_2_0; };
# https://github.com/tibbe/hashable/issues/85
hashable = dontCheck super.hashable;
+1 -1
pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
···
transformers-compat = disableCabalFlag super.transformers-compat "three";
# https://github.com/haskell/cabal/issues/2322
-
Cabal_1_22_1_0 = super.Cabal_1_22_1_0.override { binary = self.binary_0_7_3_0; };
+
Cabal_1_22_1_1 = super.Cabal_1_22_1_1.override { binary = self.binary_0_7_4_0; };
# https://github.com/tibbe/hashable/issues/85
hashable = dontCheck super.hashable;
+2 -2
pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
···
terminfo = self.terminfo_0_4_0_0;
# https://github.com/haskell/cabal/issues/2322
-
Cabal_1_22_1_0 = super.Cabal_1_22_1_0.override { binary = self.binary_0_7_3_0; };
+
Cabal_1_22_1_1 = super.Cabal_1_22_1_1.override { binary = self.binary_0_7_4_0; };
# https://github.com/tibbe/hashable/issues/85
hashable = dontCheck super.hashable;
···
presburger pretty process QuickCheck random smtLib syb text
tf-random transformers utf8-string
];
-
buildTools = with self; [ alex happy Cabal_1_22_1_0 ];
+
buildTools = with self; [ alex happy Cabal_1_22_1_1 ];
patchPhase = "sed -i -e 's|process .*,|process,|' cryptol.cabal";
description = "Cryptol: The Language of Cryptography";
license = pkgs.stdenv.lib.licenses.bsd3;