haskell-checkers: add version 0.3.1

This commit is contained in:
Peter Simons
2013-04-20 20:36:57 +02:00
parent 7dd399abc1
commit 65b95b159e
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{ cabal, QuickCheck, random }:
cabal.mkDerivation (self: {
pname = "checkers";
version = "0.3.1";
sha256 = "0lhy8bk8kkj540kjbc76j4x4xsprqwlmxdrss4r0j1bxgmfwha6p";
buildDepends = [ QuickCheck random ];
meta = {
description = "Check properties on standard classes and data structures";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})