Added test-framework.

svn path=/nixpkgs/trunk/; revision=27695
This commit is contained in:
Andres Löh
2011-07-10 17:38:21 +00:00
parent 5d27ed479a
commit d7d0700d18
7 changed files with 81 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
{cabal, QuickCheck1, testFramework, deepseq}:
cabal.mkDerivation (self : {
pname = "test-framework-quickcheck";
version = "0.2.7";
sha256 = "065nazli8vh9dz8xi71gwzlwy81anfd471jhz6hv3m893cc9vvx8";
propagatedBuildInputs = [QuickCheck1 testFramework deepseq];
meta = {
description = "QuickCheck support for the test-framework package";
license = "BSD3";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})