haskell-QuickCheck: update to version 2.7.5

This commit is contained in:
Peter Simons
2014-06-03 11:39:11 +02:00
parent c9672d767f
commit 66044974b4
2 changed files with 7 additions and 7 deletions

View File

@@ -1,14 +1,14 @@
{ cabal, random, testFramework, tfRandom }:
{ cabal, random, testFramework, tfRandom, transformers }:
cabal.mkDerivation (self: {
pname = "QuickCheck";
version = "2.7.3";
sha256 = "196pz0b32m84ydwm4wk7m8512bmsxw7nsqpxbyfxsyi3ykq220yh";
buildDepends = [ random tfRandom ];
version = "2.7.5";
sha256 = "1bak50yxf8qfwfw1f5bd2p1ynx1ndjv24yp6gd2a2a1fag34x0rb";
buildDepends = [ random tfRandom transformers ];
testDepends = [ testFramework ];
noHaddock = self.stdenv.lib.versionOlder self.ghc.version "6.11";
meta = {
homepage = "http://code.haskell.org/QuickCheck";
homepage = "https://github.com/nick8325/quickcheck";
description = "Automatic testing of Haskell programs";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;