haskell-quickcheck-io: revert hard-coding of HUnit and QuickCheck versions

That patch broke the build on modern platforms. Instead of hard-coding
those versions globally, we should do so on a per-platform basis in
haskell-defaults.nix.
This commit is contained in:
Peter Simons 2013-12-15 19:08:52 +01:00
parent 3b3cc6a4ad
commit c675ebff8b

View File

@ -1832,10 +1832,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
quickcheckInstances = callPackage ../development/libraries/haskell/quickcheck-instances {};
quickcheckIo = callPackage ../development/libraries/haskell/quickcheck-io {
HUnit = self.HUnit_1_2_5_2;
QuickCheck = self.QuickCheck2;
};
quickcheckIo = callPackage ../development/libraries/haskell/quickcheck-io {};
qrencode = callPackage ../development/libraries/haskell/qrencode {
inherit (pkgs) qrencode;