haskell-smallcheck: add version 1.0.1

This commit is contained in:
Peter Simons
2013-02-20 11:49:02 +01:00
parent 773c5a04e4
commit 1152fb2e22
3 changed files with 18 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
{ cabal, dlist }:
cabal.mkDerivation (self: {
pname = "smallcheck";
version = "0.6.2";
sha256 = "0yz7an3k71ia7sgs8xpkh37xz9ipsnbf13680185cij8llq8zbyr";
buildDepends = [ dlist ];
meta = {
homepage = "https://github.com/feuerbach/smallcheck";
description = "A property-based testing library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})