haskell-show: this package needs smallcheck version < 1

This commit is contained in:
Peter Simons 2013-02-20 11:49:37 +01:00
parent 1152fb2e22
commit b516b13441
2 changed files with 6 additions and 1 deletions

View file

@ -5,6 +5,9 @@ cabal.mkDerivation (self: {
version = "0.4.1.2";
sha256 = "1qaphxjaxng7d0kcn3vvxbvqljzzs1hvmsrdsm3pbi19qlsavd5w";
buildDepends = [ QuickCheck random smallcheck syb ];
patchPhase = ''
sed -i -e 's|smallcheck>=0.4|smallcheck >=0.4 \&\& <= 1|' show.cabal
'';
meta = {
description = "'Show' instances for Lambdabot";
license = "GPL";

View file

@ -1619,7 +1619,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
Shellac = callPackage ../development/libraries/haskell/Shellac/Shellac.nix {};
show = callPackage ../development/libraries/haskell/show {};
show = callPackage ../development/libraries/haskell/show {
smallcheck = self.smallcheck_0_6_2;
};
SMTPClient = callPackage ../development/libraries/haskell/SMTPClient {};